diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx new file mode 100644 index 0000000..8e5067f --- /dev/null +++ b/src/app/contact/page.tsx @@ -0,0 +1,99 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; + +import ContactText from '@/components/sections/contact/ContactText'; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import FooterBase from '@/components/sections/footer/FooterBase'; + +export const metadata = { + title: 'Contact Us | RapidDeliver', + description: 'Get in touch with RapidDeliver for inquiries, support, or a free quote. Our team is ready to assist you with all your delivery needs.', + keywords: ["contact, support, customer service, RapidDeliver, delivery inquiry, free quote"], +}; + +export default function ContactPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}