From 90f29ff99e7067c8f2c339af6c342922dd0f5663 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 18 Mar 2026 16:05:16 +0000 Subject: [PATCH 1/9] Update src/app/about/page.tsx --- src/app/about/page.tsx | 237 +++++++++++++++++++++++++++-------------- 1 file changed, 156 insertions(+), 81 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 6bb33c9..7c9ccde 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,12 +1,14 @@ "use client"; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; -import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; -import FooterMedia from '@/components/sections/footer/FooterMedia'; import Link from "next/link"; -import { Heart, Facebook, Zap, TrendingUp } from "lucide-react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import TeamCardTwo from "@/components/sections/team/TeamCardTwo"; +import TimelineHorizontalCardStack from "@/components/cardStack/layouts/timelines/TimelineHorizontalCardStack"; +import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Award, Heart, Zap, TrendingUp, Facebook } from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -18,57 +20,37 @@ export default function AboutPage() { { name: "Locations", id: "locations" }, ]; - const navItemsWithLinks = navItems.map((item) => ({ - ...item, - href: - item.id === "home" - ? "/" - : item.id === "menu" - ? "/#menu" - : item.id === "about" - ? "/about" - : item.id === "gallery" - ? "/gallery" - : item.id === "reviews" - ? "/#reviews" - : "/#locations", - })); - const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, - { label: "Menu", href: "/#menu" }, - { label: "Gallery", href: "/gallery" }, - { label: "Reviews", href: "/#reviews" }, + { label: "Menu", href: "/menu" }, + { label: "Gallery", href: "/" }, + { label: "Reviews", href: "/" }, ], }, { - title: "Order & Contact", - items: [ - { label: "Order Online", href: "/#order" }, + title: "Order & Contact", items: [ + { label: "Order Online", href: "/" }, { label: "Call Us", href: "tel:2397850423" }, - { label: "Locations & Hours", href: "/#locations" }, - { label: "Contact", href: "#contact" }, + { label: "Locations & Hours", href: "/" }, + { label: "Contact", href: "/" }, ], }, { - title: "Connect With Us", - items: [ + title: "Connect With Us", items: [ { label: "Facebook", href: "https://facebook.com/caribbeanflair" }, { label: "About Us", href: "/about" }, - { label: "Privacy Policy", href: "#privacy" }, - { label: "Terms of Service", href: "#terms" }, + { label: "Privacy Policy", href: "/" }, + { label: "Terms of Service", href: "/" }, ], }, { - title: "Located In", - items: [ - { label: "801 Leeland Heights Blvd W", href: "#map" }, - { label: "Lehigh Acres, FL 33936", href: "#map" }, - { label: "Open Until 9PM", href: "#locations" }, - { label: "Delivery Available", href: "/#order" }, + title: "Located In", items: [ + { label: "801 Leeland Heights Blvd W", href: "/" }, + { label: "Lehigh Acres, FL 33936", href: "/" }, + { label: "Open Until 9PM", href: "/" }, + { label: "Delivery Available", href: "/" }, ], }, ]; @@ -86,19 +68,44 @@ export default function AboutPage() { secondaryButtonStyle="glass" headingFontWeight="medium" > + {/* Navbar */} + {/* Hero Section */} +
+ +
+ + {/* Meet the Owners Section */}
-
+ {/* Brand Story Timeline */} +
+ +
+ {[ + { + year: "2020", milestone: "The Dream Begins", description: "Teria and Deb unite their culinary passion and business vision to create Caribbean Flair, dreaming of bringing authentic island flavors to Lehigh Acres."}, + { + year: "2021", milestone: "Launch Day", description: "Caribbean Flair opens its doors with a full menu of signature dishes, jerk specialties, and authentic Caribbean sides prepared fresh daily."}, + { + year: "2022", milestone: "Community Love", description: "Rapidly becomes a local favorite. Customers praise the authenticity, quality, and genuine warmth of Teria and Deb's hospitality."}, + { + year: "2023", milestone: "Expansion & Recognition", description: "Expanded menu offerings, grew customer base, and received recognition as a standout Black & women-owned business in the community."}, + { + year: "2024", milestone: "Island Excellence", description: "Continues to deliver premium authentic Caribbean cuisine while expanding delivery options and growing community presence."}, + ].map((item, index) => ( +
+
+ {item.year} +
+

+ {item.milestone} +

+

{item.description}

+
+ ))} +
+
+
+ + {/* Community Impact Section */} +
+ {/* Footer */}