Skip to content

Commit

Permalink
feat(logo): update new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
jcoulaud committed Oct 9, 2024
1 parent 5822a74 commit 090e320
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Binary file added public/logo-with-name.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 13 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import Image from 'next/image';
import Link from 'next/link';
import logo from '../../public/logo-with-name.png';
import { Button } from './components/ui/Button';

export default function Home() {
Expand All @@ -17,9 +19,18 @@ 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>
<div className='mb-8'>
<Image
src={logo}
alt='Voodle Logo'
width={200}
height={200}
priority
className='mx-auto'
/>
</div>
<h2 className='text-sm tracking-tight text-foreground'>
(Alpha version. TON supported. Solana and Ethereum coming soon)
(Beta version. TON supported. Solana and Ethereum coming soon)
</h2>
<p className='mt-6 text-lg leading-8 text-muted-foreground'>
Voodle makes crypto trading easy. No jargon, no charts—just customizable rules like
Expand Down

0 comments on commit 090e320

Please sign in to comment.