diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 6bb33c9..ecf17ef 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -1,12 +1,23 @@ "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 TimelineProcessFlow from "@/components/cardStack/layouts/timelines/TimelineProcessFlow"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; +import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { + Award, + Heart, + Zap, + TrendingUp, + Facebook, + Users, + Target, +} from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -18,61 +29,86 @@ 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: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }, - { label: "Reviews", href: "/#reviews" }, + { label: "Reviews", href: "/" }, ], }, { - title: "Order & Contact", - items: [ - { label: "Order Online", href: "/#order" }, + title: "Order & Contact", items: [ + { label: "Order Online", href: "/menu" }, { 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: "/" }, ], }, ]; + const timelineItems = [ + { + id: "founded", content: ( +
+

Founded Caribbean Flair

+

Teria Bryant and Deb Farrell launch their dream of bringing authentic Jamaican cuisine to Lehigh Acres with passion and purpose.

+
+ ), + media: ( +
+ 2023 +
+ ), + reverse: false, + }, + { + id: "community", content: ( +
+

Community Reception

+

The community embraces Caribbean Flair, supporting Black-owned and women-owned business excellence and authentic Caribbean culture.

+
+ ), + media: ( +
+ 2024 +
+ ), + reverse: true, + }, + { + id: "growth", content: ( +
+

Expansion & Recognition

+

Caribbean Flair becomes a beloved staple in Lehigh Acres, serving thousands of satisfied customers and earning 5-star recognition.

+
+ ), + media: ( +
+ 2025 +
+ ), + reverse: false, + }, + ]; + return ( + {/* Navbar */} + {/* Hero Section */} +
+ +
+ + {/* Meet the Owners Section */}
-
- + +
+ + {/* Community Impact Section */} +
+ +
+ + {/* Final CTA Section */} +
+
+ {/* Footer */}