diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..81a080e --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,96 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroOverlay from "@/components/sections/hero/HeroOverlay"; +import LegalSection from "@/components/legal/LegalSection"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; +import { Phone, Mail, Clock, MapPin } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 76d9548..e290684 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,6 @@ export default function LandingPage() { { name: "Team", id: "team" }, { name: "Testimonials", id: "testimonials" }, { name: "Contact", id: "contact" }, - { name: "Location", id: "location" }, ]} />