diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index c38730a..15d50d2 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -2,14 +2,30 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; -import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo'; import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; -import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen'; -import { Star } from "lucide-react"; +import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; export default function LandingPage() { + const navItems = [ + { + name: "Home", id: "/" + }, + { + name: "Services", id: "/services" + }, + { + name: "About", id: "/about" + }, + { + name: "Reviews", id: "/reviews" + }, + { + name: "Contact", id: "/contact" + } + ]; + return ( - + -
- -
+
+ +
-
- -
+
+ +
-
- -
- - +
);