Add src/app/contact/page.tsx

This commit is contained in:
2026-06-04 22:46:45 +00:00
parent 90a678599f
commit 94ca2ffb2b

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

@@ -0,0 +1,107 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCenter from '@/components/sections/contact/ContactCenter';
import FooterMedia from '@/components/sections/footer/FooterMedia';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="medium"
background="blurBottom"
cardStyle="outline"
primaryButtonStyle="flat"
secondaryButtonStyle="glass"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={[
{
name: "Home", id: "/"},
{
name: "About", id: "/about"},
{
name: "Research", id: "/#research"},
{
name: "Brands", id: "/#brands"},
{
name: "Impact", id: "/#impact"},
{
name: "Insights", id: "/#insights"},
{
name: "Testimonials", id: "/#testimonials"},
{
name: "Contact", id: "/contact"},
{
name: "Client Stories", id: "/client-stories"},
]}
logoSrc="http://img.b2bpic.net/free-vector/flat-design-muted-colors-label-collection_23-2150072531.jpg"
brandName="TrendLens Insights"
/>
</div>
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={true}
background={{
variant: "plain"}}
tag="Connect"
title="Ready to Transform Your Fashion Strategy?"
description="Partner with TrendLens Insights to navigate the future of luxury e-commerce. Get in touch for a personalized consultation."
inputPlaceholder="Enter your email for updates"
buttonText="Get in Touch"
termsText="By clicking Get in Touch, you agree to our Privacy Policy."
/>
</div>
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/charming-lady-with-dark-hair-sitting-floor-near-window_7502-9025.jpg?_wi=1"
imageAlt="Luxury fashion studio background"
logoSrc="http://img.b2bpic.net/free-vector/flat-design-muted-colors-label-collection_23-2150072531.jpg"
logoText="TrendLens Insights"
columns={[
{
title: "Services", items: [
{
label: "Market Research", href: "/#research"},
{
label: "Trend Analysis", href: "/#insights"},
{
label: "Brand Curation", href: "/#brands"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "/about"},
{
label: "Client Stories", href: "/client-stories"},
{
label: "Contact", href: "/contact"},
],
},
{
title: "Legal", items: [
{
label: "Privacy Policy", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
]}
copyrightText="© 2024 TrendLens Insights. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}