Add src/app/contact/page.tsx

This commit is contained in:
2026-06-07 10:39:10 +00:00
parent cd5b7a5524
commit 7bd32c0e92

99
src/app/contact/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="large"
background="none"
cardStyle="layered-gradient"
primaryButtonStyle="double-inset"
secondaryButtonStyle="radial-glow"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{ name: "Home", id: "#home" },
{ name: "About", id: "#about" },
{ name: "Features", id: "#features" },
{ name: "Metrics", id: "#metrics" },
{ name: "Pricing", id: "#pricing" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "Partners", id: "#partners" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
{ name: "Admin", id: "/admin" },
]}
brandName="RapidDeliver"
/>
</div>
<div id="contact" data-section="contact">
<ContactText
useInvertedBackground={false}
background={{
variant: "sparkles-gradient"}}
text="Ready to simplify your deliveries? Get in touch with our team today and experience the RapidDeliver difference!"
buttons={[
{
text: "Contact Us Now", href: "/contact"},
{
text: "Get a Free Quote", href: "/contact"},
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={[
{
title: "Services", items: [
{ label: "Standard Delivery", href: "#pricing" },
{ label: "Express Delivery", href: "#pricing" },
{ label: "Business Solutions", href: "#pricing" },
{ label: "International Shipping", href: "#features" },
],
},
{
title: "Company", items: [
{ label: "About Us", href: "#about" },
{ label: "Our Mission", href: "#about" },
{ label: "Careers", href: "#" },
{ label: "Partnerships", href: "#partners" },
],
},
{
title: "Support", items: [
{ label: "FAQ", href: "/faq" },
{ label: "Contact Us", href: "/contact" },
{ label: "Track Order", href: "#features" },
{ label: "Terms of Service", href: "#" },
],
},
]}
logoText="RapidDeliver"
copyrightText="© 2024 RapidDeliver. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}