Merge version_3 into main #2
85
src/app/about/page.tsx
Normal file
85
src/app/about/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -35,7 +35,7 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "Home", id: "#home"},
|
||||
{
|
||||
name: "About", id: "#about"},
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Research", id: "#research"},
|
||||
{
|
||||
@@ -62,9 +62,9 @@ export default function LandingPage() {
|
||||
description="Your premier source for discerning market research and e-commerce trend analysis in high-end women's fashion. Discover the brands shaping the future of style."
|
||||
buttons={[
|
||||
{
|
||||
text: "Explore Research", href: "#research"},
|
||||
text: "Explore Research", href: "/#research"},
|
||||
{
|
||||
text: "View Curated Brands", href: "#brands"},
|
||||
text: "View Curated Brands", href: "/#brands"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-holding-tablet_23-2148452667.jpg"
|
||||
imageAlt="High fashion e-commerce website interface"
|
||||
@@ -231,21 +231,21 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Market Research", href: "#research"},
|
||||
label: "Market Research", href: "/#research"},
|
||||
{
|
||||
label: "Trend Analysis", href: "#insights"},
|
||||
label: "Trend Analysis", href: "/#insights"},
|
||||
{
|
||||
label: "Brand Curation", href: "#brands"},
|
||||
label: "Brand Curation", href: "/#brands"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us", href: "#about"},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Client Stories", href: "#testimonials"},
|
||||
label: "Client Stories", href: "/#testimonials"},
|
||||
{
|
||||
label: "Contact", href: "#contact"},
|
||||
label: "Contact", href: "/#contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user