diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..3ae3775 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,117 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import HeroLogo from "@/components/sections/hero/HeroLogo"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import TextAbout from "@/components/sections/about/TextAbout"; +import FooterLogoEmphasis from "@/components/sections/footer/FooterLogoEmphasis"; +import { Phone, Mail, MapPin, Clock } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file