diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index edb5994..c9afd6b 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,215 +2,118 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import ContactFaq from '@/components/sections/contact/ContactFaq'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FooterBase from '@/components/sections/footer/FooterBase'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import { Phone } from "lucide-react"; -export default function LandingPage() { +export default function ContactPage() { + const navItems = [ + { + name: "Home", id: "/" + }, + { + name: "Services", id: "/services" + }, + { + name: "About", id: "/about" + }, + { + name: "Reviews", id: "/reviews" + }, + { + name: "Contact", id: "/contact" + } + ]; + return ( - + -
- -
+
+ +
-
- -
- -
- -
- - +
); diff --git a/src/app/reviews/page.tsx b/src/app/reviews/page.tsx index 67ba658..3e7dcc0 100644 --- a/src/app/reviews/page.tsx +++ b/src/app/reviews/page.tsx @@ -2,286 +2,141 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCTA from '@/components/sections/contact/ContactCTA'; -import FaqBase from '@/components/sections/faq/FaqBase'; -import FooterBase from '@/components/sections/footer/FooterBase'; -import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; -import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix'; import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; -import { Building, Home } from "lucide-react"; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; + +export default function ReviewsPage() { + const navItems = [ + { + name: "Home", id: "/" + }, + { + name: "Services", id: "/services" + }, + { + name: "About", id: "/about" + }, + { + name: "Reviews", id: "/reviews" + }, + { + name: "Contact", id: "/contact" + } + ]; -export default function LandingPage() { return ( - + -
- -
+
+ +
-
- -
- -
- -
- -
- -
- - +
);