From 6ba8b52827e76e94a761b9bf2080ca28b78a37e4 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 12 Jun 2026 23:11:18 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 475 ++++++++++++++++++++++++----------------------- 1 file changed, 243 insertions(+), 232 deletions(-) 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 +}