diff --git a/app/page.tsx b/app/page.tsx index f23116a..8e8c7cf 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -21,49 +21,49 @@ export default function Home() { */}
-
-

See how Dishpix can help you improve your content online.

-
-

- Photo Comparison -

-
-
-

- Before -

- Before photo +
+

See how Dishpix can help you improve your content online.

+
+

+ Photo Comparison +

+
+
+

+ Before +

+ Before photo +
+
+

+ After +

+ After photo +
+
+
+

+ What Happened? +

+

+ Dishpix AI transforms ordinary food photos into stunning, professional-quality images. Our advanced algorithms enhance colors, adjust lighting, and add artistic touches to make your food photos look incredible. Simply upload your photo and let the magic happen! +

+
+
-
-

- After -

- After photo -
-
-
-

- What Happened? -

-

- Dishpix AI transforms ordinary food photos into stunning, professional-quality images. Our advanced algorithms enhance colors, adjust lighting, and add artistic touches to make your food photos look incredible. Simply upload your photo and let the magic happen! -

-
-
-
-
+ ); } diff --git a/components/ui/header.tsx b/components/ui/header.tsx index 0b2a3ac..0153a1a 100644 --- a/components/ui/header.tsx +++ b/components/ui/header.tsx @@ -1,46 +1,189 @@ +"use client"; + import * as React from "react" import { cn } from "@/lib/utils" import Link from "next/link" +import { useState } from "react" interface HeaderProps { className?: string } +const navigation = [ + { name: 'Dashboard', href: '/dashboard', current: true }, + { name: 'Projects', href: '/projects', current: false }, + { name: 'Calendar', href: '/calendar', current: false }, + { name: 'Reports', href: '/reports', current: false }, +] + export function Header({ className }: HeaderProps) { + const [mobileMenuOpen, setMobileMenuOpen] = useState(false) + const [profileOpen, setProfileOpen] = useState(false) + return ( -
-
-
- - Logo - +
+
+ + + {/* Mobile menu */} + {mobileMenuOpen && ( +
+
+ {navigation.map((item) => ( + + {item.name} + + ))} +
+
+
+
+ +
+
+
User Name
+
user@example.com
+
+ +
+
+ + Your Profile + + + Settings + + + Sign out + +
+
+
+ )}
) } \ No newline at end of file