Add src/app/contact/page.tsx

This commit is contained in:
2026-05-01 15:59:03 +00:00
parent e44931a49f
commit 3eaefcf72c

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

@@ -0,0 +1,59 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="smallMedium"
sizing="mediumLarge"
background="noiseDiagonalGradient"
cardStyle="glass-depth"
primaryButtonStyle="double-inset"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{ name: "About", id: "/#about" },
{ name: "Services", id: "/#services" },
{ name: "Trust", id: "/#trust" },
{ name: "Contact", id: "/contact" },
]}
brandName="Still Trucking"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
tag="Get in touch"
title="Contact Our Team"
description="Reach out to us for any freight logistics inquiries and service requests."
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Still Trucking Inc"
columns={[
{ title: "Company", items: [{ label: "About", href: "/#about" }, { label: "Services", href: "/#services" }] },
{ title: "Resources", items: [{ label: "FAQ", href: "/#faq" }, { label: "Safety", href: "#" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }, { label: "Terms", href: "#" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}