diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index 95ee002..36e0d2a 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -1,13 +1,11 @@ "use client"; +import Link from "next/link"; 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 { Star, Heart, Zap, TrendingUp, Award } from "lucide-react"; +import { Star, Heart, Award } from "lucide-react"; export default function ReviewsPage() { const navItems = [ @@ -24,15 +22,15 @@ export default function ReviewsPage() { title: "Quick Links", items: [ { label: "Home", href: "/" }, { label: "Menu", href: "/menu" }, - { label: "Gallery", href: "/gallery" }, + { label: "Gallery", href: "/" }, { label: "Reviews", href: "/reviews" }, ], }, { title: "Order & Contact", items: [ - { label: "Order Online", href: "/menu" }, + { label: "Order Online", href: "/" }, { label: "Call Us", href: "tel:2397850423" }, - { label: "Locations & Hours", href: "/locations" }, + { label: "Locations & Hours", href: "/" }, { label: "Contact", href: "/" }, ], }, @@ -46,9 +44,9 @@ export default function ReviewsPage() { }, { 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: "801 Leeland Heights Blvd W", href: "/" }, + { label: "Lehigh Acres, FL 33936", href: "/" }, + { label: "Open Until 9PM", href: "/" }, { label: "Delivery Available", href: "/" }, ], }, @@ -77,62 +75,12 @@ export default function ReviewsPage() { /> - {/* Hero Section */} -