Add src/app/contact/page.tsx

This commit is contained in:
2026-06-03 03:20:17 +00:00
parent 2bdfdac3da
commit 02836be82d

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

@@ -0,0 +1,106 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLargeSizeLargeTitles"
background="aurora"
cardStyle="gradient-bordered"
primaryButtonStyle="gradient"
secondaryButtonStyle="radial-glow"
headingFontWeight="bold"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Trade Snooper"
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "#features" },
{ name: "Pricing", id: "#pricing" },
{ name: "Testimonials", id: "#testimonials" },
{ name: "FAQ", id: "#faq" },
{ name: "Contact", id: "/contact" },
{ name: "Privacy Policy", id: "/privacy-policy" },
{ name: "Terms of Service", id: "/terms-of-service" }
]}
/>
</div>
<div id="contact-form" data-section="contact-form">
<ContactSplitForm
title="Get in Touch with <span class=\"text-primary-cta\">Trade Snooper</span>"
description="Have questions or need assistance? Fill out the form below and our team will get back to you shortly."
inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true },
{ name: "subject", type: "text", placeholder: "Subject" }
]}
textarea={{
name: "message", placeholder: "Your Message", rows: 5,
required: true
}}
buttonText="Send Message"
imageSrc="http://img.b2bpic.net/free-photo/people-meeting-discussing-plans-together_23-2148161555.jpg"
imageAlt="Team collaborating in an office setting"
mediaPosition="right"
useInvertedBackground={false}
onSubmit={(data) => console.log("Form submitted", data)}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoSrc="http://img.b2bpic.net/free-vector/gradient-technology-logo-collection_23-2148162307.jpg"
logoAlt="Trade Snooper Logo"
logoText="Trade Snooper"
columns={[
{
title: "Platform", items: [
{ label: "Features", href: "/#features" },
{ label: "Pricing", href: "/#pricing" },
{ label: "Markets", href: "#" },
{ label: "AI Analytics", href: "#" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/#about" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" },
{ label: "Partners", href: "/#social-proof" }
]
},
{
title: "Support", items: [
{ label: "FAQ", href: "/#faq" },
{ label: "Contact Us", href: "/contact" },
{ label: "Help Center", href: "#" },
{ label: "Community", href: "#" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "/privacy-policy" },
{ label: "Terms of Service", href: "/terms-of-service" },
{ label: "Disclaimer", href: "#" }
]
}
]}
copyrightText="© 2024 Trade Snooper. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}