Add src/app/about/page.tsx

This commit is contained in:
2026-06-04 22:42:10 +00:00
parent 895264db8f
commit 06c2cf4071

85
src/app/about/page.tsx Normal file
View File

@@ -0,0 +1,85 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import MediaAbout from '@/components/sections/about/MediaAbout';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function AboutPage() {
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" }
]}
logoSrc="http://img.b2bpic.net/free-vector/flat-design-muted-colors-label-collection_23-2150072531.jpg"
brandName="TrendLens Insights"
/>
</div>
<div id="about-content" data-section="about-content">
<MediaAbout
useInvertedBackground={false}
title="Our Vision & Mission"
description="At TrendLens Insights, our mission is to empower luxury fashion brands and e-commerce platforms with unparalleled market intelligence. We believe in a future where data-driven strategies meet creative intuition, enabling our clients to not just follow, but define the next generation of style. We are committed to meticulous research, innovative analysis, and fostering long-term partnerships built on trust and insight."
imageSrc="http://img.b2bpic.net/free-photo/charming-lady-with-dark-hair-sitting-floor-near-window_7502-9025.jpg"
imageAlt="Our team collaborating on fashion insights"
/>
</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"
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: "/#testimonials" },
{ 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>
);
}