diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index 2dbc65d..95ee002 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -2,11 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; +import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import FeatureCardTen from "@/components/sections/feature/FeatureCardTen"; import FooterMedia from "@/components/sections/footer/FooterMedia"; -import Link from "next/link"; -import { Star, Zap } from "lucide-react"; +import { Star, Heart, Zap, TrendingUp, Award } from "lucide-react"; export default function ReviewsPage() { const navItems = [ @@ -20,8 +21,7 @@ export default function ReviewsPage() { const footerColumns = [ { - title: "Quick Links", - items: [ + title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, { label: "Gallery", href: "/gallery" }, @@ -29,30 +29,27 @@ export default function ReviewsPage() { ], }, { - 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: "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: "About Us", href: "/" }, + { 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" }, + title: "Located In", items: [ + { label: "801 Leeland Heights Blvd W", href: "/locations" }, + { label: "Lehigh Acres, FL 33936", href: "/locations" }, { label: "Open Until 9PM", href: "/locations" }, - { label: "Delivery Available", href: "/order" }, + { label: "Delivery Available", href: "/" }, ], }, ]; @@ -70,22 +67,72 @@ export default function ReviewsPage() { secondaryButtonStyle="glass" headingFontWeight="medium" > + {/* Navbar */}
+ {/* Hero Section */} +