diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 53f7e86..1a2174e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -10,11 +10,11 @@ import { Sparkles, MapPin } from "lucide-react"; import Link from "next/link"; const navItems = [ - { name: "Home", id: "home" }, - { name: "Menu", id: "menu" }, - { name: "Order Online", id: "order-online" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "Order Online", id: "https://get-fruity-cafe-conyers.food-menu.net/menu/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -144,4 +144,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 562f2a2..7cab59e 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -10,11 +10,11 @@ import { MapPin, Zap } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Menu", id: "menu" }, - { name: "Order Online", id: "order-online" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "Order Online", id: "https://get-fruity-cafe-conyers.food-menu.net/menu/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -117,4 +117,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx index 9b41da6..2215811 100644 --- a/src/app/menu/page.tsx +++ b/src/app/menu/page.tsx @@ -11,11 +11,11 @@ import Link from "next/link"; export default function MenuPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Menu", id: "menu" }, - { name: "Order Online", id: "order-online" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "Order Online", id: "https://get-fruity-cafe-conyers.food-menu.net/menu/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -177,4 +177,4 @@ export default function MenuPage() { ); -} \ No newline at end of file +} diff --git a/src/app/order-online/page.tsx b/src/app/order-online/page.tsx index da25b75..4f4e07a 100644 --- a/src/app/order-online/page.tsx +++ b/src/app/order-online/page.tsx @@ -10,11 +10,11 @@ import { ShoppingCart, Zap } from "lucide-react"; import Link from "next/link"; const navItems = [ - { name: "Home", id: "home" }, - { name: "Menu", id: "menu" }, - { name: "Order Online", id: "order-online" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "Menu", id: "/menu" }, + { name: "Order Online", id: "https://get-fruity-cafe-conyers.food-menu.net/menu/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ @@ -157,4 +157,4 @@ export default function OrderOnlinePage() { ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index ef753c5..7860732 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -14,11 +14,11 @@ import { Leaf, Star, Sparkles, MapPin, Zap } from "lucide-react"; export default function HomePage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Menu", id: "menu" }, + { name: "Home", id: "hero" }, + { name: "Menu", id: "featured-items" }, { name: "Order Online", id: "order-online" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "About", id: "why-choose" }, + { name: "Contact", id: "location-preview" }, ]; const footerColumns = [ @@ -249,4 +249,4 @@ export default function HomePage() { ); -} \ No newline at end of file +}