diff --git a/frontend/public/pounce-logo.png b/frontend/public/pounce-logo.png new file mode 100644 index 0000000..e664185 Binary files /dev/null and b/frontend/public/pounce-logo.png differ diff --git a/frontend/src/app/login/page.tsx b/frontend/src/app/login/page.tsx index dbc504b..a38f702 100644 --- a/frontend/src/app/login/page.tsx +++ b/frontend/src/app/login/page.tsx @@ -3,22 +3,20 @@ import { useState } from 'react' import { useRouter } from 'next/navigation' import Link from 'next/link' +import Image from 'next/image' import { useStore } from '@/lib/store' import { Loader2, ArrowRight, Eye, EyeOff } from 'lucide-react' -// Logo Component - Text with accent dot +// Logo Component - Puma Image function Logo() { return ( -
- {/* Accent dot - top left */} - - - - - - pounce - -
+ pounce ) } diff --git a/frontend/src/app/register/page.tsx b/frontend/src/app/register/page.tsx index 360ded8..325b2ea 100644 --- a/frontend/src/app/register/page.tsx +++ b/frontend/src/app/register/page.tsx @@ -3,22 +3,20 @@ import { useState } from 'react' import { useRouter } from 'next/navigation' import Link from 'next/link' +import Image from 'next/image' import { useStore } from '@/lib/store' import { Loader2, ArrowRight, Check, Eye, EyeOff } from 'lucide-react' -// Logo Component - Text with accent dot +// Logo Component - Puma Image function Logo() { return ( -
- {/* Accent dot - top left */} - - - - - - pounce - -
+ pounce ) } diff --git a/frontend/src/components/Footer.tsx b/frontend/src/components/Footer.tsx index 84d7beb..0d817d7 100644 --- a/frontend/src/components/Footer.tsx +++ b/frontend/src/components/Footer.tsx @@ -1,4 +1,5 @@ import Link from 'next/link' +import Image from 'next/image' import { Github, Twitter, Mail } from 'lucide-react' export function Footer() { @@ -8,14 +9,14 @@ export function Footer() {
{/* Brand */}
-
- - - - - - pounce - +
+ pounce

Professional domain intelligence. Monitor availability, track prices, and secure your domains. diff --git a/frontend/src/components/Header.tsx b/frontend/src/components/Header.tsx index a5b8f0a..b4fa681 100644 --- a/frontend/src/components/Header.tsx +++ b/frontend/src/components/Header.tsx @@ -1,22 +1,23 @@ 'use client' import Link from 'next/link' +import Image from 'next/image' import { useStore } from '@/lib/store' import { LogOut, LayoutDashboard, Menu, X } from 'lucide-react' import { useState } from 'react' -// Logo Component - Text with accent dot +// Logo Component - Puma Image function Logo() { return ( -

- {/* Accent dot - top left */} - - - - - - pounce - +
+ pounce
) } diff --git a/pounce_logo.png b/pounce_logo.png new file mode 100644 index 0000000..e664185 Binary files /dev/null and b/pounce_logo.png differ