diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..7990225 --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,114 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import ContactText from "@/components/sections/contact/ContactText"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Heart, Mail, MapPin, Phone } from "lucide-react"; + +export default function ContactPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}