Skip to content

Commit

Permalink
feat(landing): change intro text
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoulaud committed Sep 25, 2024
1 parent 83aa7f0 commit b276026
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/components/ui/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ CardHeader.displayName = 'Card.Header';

const CardContent = forwardRef<HTMLDivElement, React.HTMLAttributes<HTMLDivElement>>(
({ className, ...props }, ref) => (
<div ref={ref} className={cn('px-4 py-1 sm:px-6', className)} {...props} />
<div ref={ref} className={cn('px-4 py-4 sm:px-6', className)} {...props} />
),
);
CardContent.displayName = 'Card.Content';
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const inter = Inter({ subsets: ['latin'] });

export const metadata = {
title: 'Voodle',
description: 'Trading Made Easy',
description: 'Simple Crypto Trading for Everyone',
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
Expand Down
7 changes: 6 additions & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ export default function Home() {
</div>
<div className='mx-auto max-w-2xl text-center'>
<h1 className='text-4xl font-bold tracking-tight text-foreground sm:text-6xl'>Voodle</h1>
<p className='mt-6 text-lg leading-8 text-muted-foreground'>Trading made easy</p>
<p className='mt-6 text-lg leading-8 text-muted-foreground'>
Voodle makes crypto trading easy. No jargon, no charts—just customizable rules like
“Invest $5 in tokens with `&apos;`Dog`&apos;` in the name” and automatic trades based on
clear conditions. Manage your strategies and track performance from an intuitive
dashboard. No trading experience needed.
</p>
<div className='mt-10 flex items-center justify-center'>
<Link href='/login' passHref>
<Button variant='primary' size='lg'>
Expand Down

0 comments on commit b276026

Please sign in to comment.