diff --git a/src/app/menu/page.tsx b/src/app/menu/page.tsx new file mode 100644 index 0000000..418b66e --- /dev/null +++ b/src/app/menu/page.tsx @@ -0,0 +1,146 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; + +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import ProductCardFour from '@/components/sections/product/ProductCardFour'; + +const navItems = [ + { + name: "Home", id: "#hero" + }, + { + name: "Our Story", id: "#about" + }, + { + name: "Flavors", id: "#features" + }, + { + name: "Menu", id: "/menu" + }, + { + name: "Testimonials", id: "#testimonials" + }, + { + name: "Contact", id: "#contact" + }, +]; + +const footerColumns = [ + { + title: "Chill Way Kitchen", items: [ + { + label: "Hours", href: "#" + }, + { + label: "Phone", href: "#" + }, + { + label: "Address", href: "#" + }, + ], + }, + { + title: "Discover", items: [ + { + label: "Menu", href: "/menu" + }, + { + label: "Our Story", href: "#about" + }, + { + label: "Flavors", href: "#features" + }, + ], + }, + { + title: "Connect", items: [ + { + label: "Social Links", href: "#" + }, + { + label: "Google Reviews", href: "#" + }, + { + label: "Order Online", href: "#" + }, + ], + }, +]; + +export default function MenuPage() { + return ( + + + + + + + + + + ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index d0d28d2..5bdd20c 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -9,254 +9,265 @@ import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import MediaAbout from '@/components/sections/about/MediaAbout'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; + import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen'; +const navItems = [ + { + name: "Home", id: "#hero" + }, + { + name: "Our Story", id: "#about" + }, + { + name: "Flavors", id: "#features" + }, + { + name: "Menu", id: "/menu" + }, + { + name: "Testimonials", id: "#testimonials" + }, + { + name: "Contact", id: "#contact" + }, +]; + +const footerColumns = [ + { + title: "Chill Way Kitchen", items: [ + { + label: "Hours", href: "#" + }, + { + label: "Phone", href: "#" + }, + { + label: "Address", href: "#" + }, + ], + }, + { + title: "Discover", items: [ + { + label: "Menu", href: "/menu" + }, + { + label: "Our Story", href: "#about" + }, + { + label: "Flavors", href: "#features" + }, + ], + }, + { + title: "Connect", items: [ + { + label: "Social Links", href: "#" + }, + { + label: "Google Reviews", href: "#" + }, + { + label: "Order Online", href: "#" + }, + ], + }, +]; + export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
+
+ +
- +
+ +
-
- -
+
+ +
-
- -
+
+ +
-
- -
- - +
); -} \ No newline at end of file +}