diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..5cfefa4 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,101 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; +import ContactText from "@/components/sections/contact/ContactText"; +import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; +import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}