From a3364a8d762b1df2409df5ce5378bef8169bc36a Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 19:16:13 +0000 Subject: [PATCH] Update src/app/reviews/page.tsx --- src/app/reviews/page.tsx | 174 ++++++++++++++++++++++----------------- 1 file changed, 97 insertions(+), 77 deletions(-) diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index d3b9d6b..cf1b7c8 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -1,23 +1,21 @@ "use client"; -import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; -import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; -import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven"; -import FaqBase from "@/components/sections/faq/FaqBase"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterMedia from "@/components/sections/footer/FooterMedia"; +import { Star } from "lucide-react"; + +const navItems = [ + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Reviews", id: "/reviews" }, + { name: "Contact", id: "/contact" }, +]; export default function ReviewsPage() { - const navItems = [ - { name: "Home", id: "/" }, - { name: "Services", id: "/services" }, - { name: "Water Heaters", id: "/water-heaters" }, - { name: "About", id: "/about" }, - { name: "Reviews", id: "/reviews" }, - { name: "Contact", id: "/contact" }, - ]; - return ( - {/* Navigation */} + {/* Navbar */} - {/* Featured Testimonial */} -
- +
- {/* Customer Stats */} -
- +
- {/* FAQ Section */} -
- + +
+ + {/* CTA Section */} +
+
{/* Footer */}