Compare commits
11 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 12f6751ab5 | |||
| b836aea24e | |||
| f97389689e | |||
| 50987339c8 | |||
| e006d384aa | |||
| 279a6265fa | |||
| 72a9383b07 | |||
| 94ca2ffb2b | |||
| 90a678599f | |||
| d892142d42 | |||
| c9f5825d31 |
121
src/app/client-stories/page.tsx
Normal file
121
src/app/client-stories/page.tsx
Normal file
@@ -0,0 +1,121 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function ClientStoriesPage() {
|
||||
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="client-stories" data-section="client-stories">
|
||||
<TestimonialCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Elara Vance", role: "CEO", company: "LuxeCollective Boutique", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21369.jpg?_wi=2", imageAlt: "Elara Vance, CEO of LuxeCollective Boutique"},
|
||||
{
|
||||
id: "2", name: "Marcus Thorne", role: "Head of E-commerce", company: "Signature Style Group", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessmen-thumbs-up-gesture-near-building_23-2148308630.jpg?_wi=2", imageAlt: "Marcus Thorne, Head of E-commerce at Signature Style Group"},
|
||||
{
|
||||
id: "3", name: "Seraphina Bleu", role: "Creative Director", company: "Bleu Bijoux Fine Jewelry", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-have-earned-little-relaxation_329181-20510.jpg?_wi=2", imageAlt: "Seraphina Bleu, Creative Director at Bleu Bijoux Fine Jewelry"},
|
||||
{
|
||||
id: "4", name: "Julian Hayes", role: "Investment Analyst", company: "Fashion Ventures Capital", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-setting-project-reminders_482257-119416.jpg?_wi=2", imageAlt: "Julian Hayes, Investment Analyst at Fashion Ventures Capital"},
|
||||
{
|
||||
id: "5", name: "Isabella Rossi", role: "Brand Strategist", company: "Opulent Wearables", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-drawing-new-projects-chalkboard_329181-18074.jpg?_wi=2", imageAlt: "Isabella Rossi, Brand Strategist at Opulent Wearables"},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Hear directly from industry leaders about the impact of our market research."
|
||||
/>
|
||||
</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>
|
||||
);
|
||||
}
|
||||
107
src/app/contact/page.tsx
Normal file
107
src/app/contact/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -2,15 +2,12 @@
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
|
||||
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||
import FeatureCardTwentyFour from '@/components/sections/feature/FeatureCardTwentyFour';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
|
||||
|
||||
@@ -37,13 +34,13 @@ export default function LandingPage() {
|
||||
{
|
||||
name: "About", id: "/about"},
|
||||
{
|
||||
name: "Research", id: "#research"},
|
||||
name: "Market Research", id: "/market-research"},
|
||||
{
|
||||
name: "Brands", id: "#brands"},
|
||||
name: "Trend Analysis", id: "/trend-analysis"},
|
||||
{
|
||||
name: "Brand Curation", id: "/brand-curation"},
|
||||
{
|
||||
name: "Impact", id: "#impact"},
|
||||
{
|
||||
name: "Insights", id: "#insights"},
|
||||
{
|
||||
name: "Testimonials", id: "#testimonials"},
|
||||
{
|
||||
@@ -62,9 +59,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: "/market-research"},
|
||||
{
|
||||
text: "View Curated Brands", href: "/#brands"},
|
||||
text: "View Curated Brands", href: "/brand-curation"},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/portrait-confident-businesswoman-holding-tablet_23-2148452667.jpg"
|
||||
imageAlt="High fashion e-commerce website interface"
|
||||
@@ -81,54 +78,9 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="research" data-section="research">
|
||||
<FeatureCardTwentyFour
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "1", title: "Data-Driven Analysis", author: "Advanced AI & Human Insight", description: "Leveraging cutting-edge AI tools alongside expert human analysis to dissect market data and identify emerging patterns.", tags: [
|
||||
"Analytics", "AI"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/online-shopping-concept_23-2151896842.jpg", imageAlt: "Fashion data analytics dashboard"},
|
||||
{
|
||||
id: "2", title: "Curated Brand Scouting", author: "Global Network & Expertise", description: "Our global network actively seeks out unique brands that align with modern luxury aesthetics and demonstrate consistent innovation.", tags: [
|
||||
"Scouting", "Curation"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/shop-seller-adjusting-new-dress-female-customer-woman-trying-clothes-fashion-store-buying-clothes-boutique-concept_74855-12004.jpg", imageAlt: "Fashion editor curating styles"},
|
||||
{
|
||||
id: "3", title: "Strategic Trend Forecasting", author: "Predictive Modeling", description: "Providing actionable insights and future trend predictions, empowering clients to make informed strategic decisions.", tags: [
|
||||
"Strategy", "Forecasting"],
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-technology-concept_23-2151908093.jpg", imageAlt: "Business strategy planning fashion"},
|
||||
]}
|
||||
title="Our Research Methodology"
|
||||
description="We employ a rigorous approach to uncover the most impactful trends and influential brands in luxury e-commerce."
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="brands" data-section="brands">
|
||||
<ProductCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "product-1", name: "Luxury Shoulder Bag", price: "€1,200", imageSrc: "http://img.b2bpic.net/free-photo/still-life-bag-hanging_52683-151481.jpg", imageAlt: "Luxury designer handbag"},
|
||||
{
|
||||
id: "product-2", name: "Elegant Stiletto Pumps", price: "€750", imageSrc: "http://img.b2bpic.net/free-photo/light-shines-elegant-shoes-with-precious-stones_8353-1419.jpg", imageAlt: "Elegant high heel shoes"},
|
||||
{
|
||||
id: "product-3", name: "Minimalist Gold Necklace", price: "€450", imageSrc: "http://img.b2bpic.net/free-photo/aesthetic-golden-earrings-with-pearls_23-2149846568.jpg", imageAlt: "Delicate gold chain necklace"},
|
||||
{
|
||||
id: "product-4", name: "Chic Leather Ankle Boots", price: "€980", imageSrc: "http://img.b2bpic.net/free-photo/leather-boots-womens-shoes_23-2149022646.jpg", imageAlt: "Luxury leather ankle boots"},
|
||||
{
|
||||
id: "product-5", name: "Statement Silver Earrings", price: "€320", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-girl-silver-earrings_23-2149488390.jpg", imageAlt: "Statement silver earrings"},
|
||||
{
|
||||
id: "product-6", name: "Patterned Silk Scarf", price: "€280", imageSrc: "http://img.b2bpic.net/free-photo/elegant-silk-scarf_23-2149460548.jpg", imageAlt: "Elegant silk scarf"},
|
||||
]}
|
||||
title="Curated Women's Fashion Websites"
|
||||
description="A handpicked selection of the most innovative and stylish online boutiques offering exquisite shoes, bags, accessories, and jewelry."
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="impact" data-section="impact">
|
||||
<MetricCardTwo
|
||||
@@ -161,23 +113,7 @@ export default function LandingPage() {
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="insights" data-section="insights">
|
||||
<BlogCardThree
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
title="Latest Trends & Insights"
|
||||
description="Stay informed with our deep dives into the dynamic world of luxury fashion e-commerce."
|
||||
blogs={[
|
||||
{
|
||||
id: "blog-1", category: "Trend Analysis", title: "The Rise of Minimalist Luxury in Digital Spaces", excerpt: "Exploring how 'quiet luxury' is translating into minimalist designs and refined aesthetics across online fashion.", imageSrc: "http://img.b2bpic.net/free-photo/set-with-fashionable-women-s-clothing-jeans-sweater-shoes-accessories-flat-lay_169016-4111.jpg", imageAlt: "Minimalist fashion trend article image", authorName: "Ava Sterling", authorAvatar: "http://img.b2bpic.net/free-photo/successful-expert_1098-14503.jpg", date: "October 26, 2024"},
|
||||
{
|
||||
id: "blog-2", category: "Sustainability", title: "Sustainable Practices Driving Consumer Choice in High Fashion", excerpt: "How ethical sourcing and eco-conscious collections are influencing purchasing decisions in the luxury market.", imageSrc: "http://img.b2bpic.net/free-photo/eco-friendly-materials-clothing_23-2150893325.jpg", imageAlt: "Sustainable fashion future trends article image", authorName: "Liam Chen", authorAvatar: "http://img.b2bpic.net/free-photo/cheerful-bearded-young-man-using-tablet-computer-outdoors_171337-14773.jpg", date: "October 18, 2024"},
|
||||
{
|
||||
id: "blog-3", category: "E-commerce Strategy", title: "Leveraging AI for Personalized Luxury Shopping Experiences", excerpt: "An in-depth look at how artificial intelligence is reshaping personalization and engagement on luxury e-commerce platforms.", imageSrc: "http://img.b2bpic.net/free-photo/side-view-woman-taking-photo-with-smartphone_23-2150746437.jpg", imageAlt: "Digital fashion e-commerce report image", authorName: "Chloe Davis", authorAvatar: "http://img.b2bpic.net/free-photo/portrait-man-shopping-buying-consumer-goods_23-2151669755.jpg", date: "October 10, 2024"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardOne
|
||||
@@ -188,19 +124,19 @@ export default function LandingPage() {
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Elara Vance", role: "CEO", company: "LuxeCollective Boutique", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21369.jpg", imageAlt: "Elara Vance, CEO of LuxeCollective Boutique"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/elderly-business-woman-office-isolated_1303-21369.jpg?_wi=1", imageAlt: "Elara Vance, CEO of LuxeCollective Boutique"},
|
||||
{
|
||||
id: "2", name: "Marcus Thorne", role: "Head of E-commerce", company: "Signature Style Group", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessmen-thumbs-up-gesture-near-building_23-2148308630.jpg", imageAlt: "Marcus Thorne, Head of E-commerce at Signature Style Group"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/businessmen-thumbs-up-gesture-near-building_23-2148308630.jpg?_wi=1", imageAlt: "Marcus Thorne, Head of E-commerce at Signature Style Group"},
|
||||
{
|
||||
id: "3", name: "Seraphina Bleu", role: "Creative Director", company: "Bleu Bijoux Fine Jewelry", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-have-earned-little-relaxation_329181-20510.jpg", imageAlt: "Seraphina Bleu, Creative Director at Bleu Bijoux Fine Jewelry"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-have-earned-little-relaxation_329181-20510.jpg?_wi=1", imageAlt: "Seraphina Bleu, Creative Director at Bleu Bijoux Fine Jewelry"},
|
||||
{
|
||||
id: "4", name: "Julian Hayes", role: "Investment Analyst", company: "Fashion Ventures Capital", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-setting-project-reminders_482257-119416.jpg", imageAlt: "Julian Hayes, Investment Analyst at Fashion Ventures Capital"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/office-worker-setting-project-reminders_482257-119416.jpg?_wi=1", imageAlt: "Julian Hayes, Investment Analyst at Fashion Ventures Capital"},
|
||||
{
|
||||
id: "5", name: "Isabella Rossi", role: "Brand Strategist", company: "Opulent Wearables", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-drawing-new-projects-chalkboard_329181-18074.jpg", imageAlt: "Isabella Rossi, Brand Strategist at Opulent Wearables"},
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-drawing-new-projects-chalkboard_329181-18074.jpg?_wi=1", imageAlt: "Isabella Rossi, Brand Strategist at Opulent Wearables"},
|
||||
]}
|
||||
title="What Our Clients Say"
|
||||
description="Hear directly from industry leaders about the impact of our market research."
|
||||
@@ -231,11 +167,11 @@ export default function LandingPage() {
|
||||
{
|
||||
title: "Services", items: [
|
||||
{
|
||||
label: "Market Research", href: "/#research"},
|
||||
label: "Market Research", href: "/market-research"},
|
||||
{
|
||||
label: "Trend Analysis", href: "/#insights"},
|
||||
label: "Trend Analysis", href: "/trend-analysis"},
|
||||
{
|
||||
label: "Brand Curation", href: "/#brands"},
|
||||
label: "Brand Curation", href: "/brand-curation"},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
||||
113
src/app/privacy-policy/page.tsx
Normal file
113
src/app/privacy-policy/page.tsx
Normal file
@@ -0,0 +1,113 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
|
||||
export default function PrivacyPolicyPage() {
|
||||
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: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms-of-service" }
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/flat-design-muted-colors-label-collection_23-2150072531.jpg"
|
||||
brandName="TrendLens Insights"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="privacy-policy" data-section="privacy-policy">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Privacy Policy"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Introduction", content: [
|
||||
{ type: "paragraph", text: "Welcome to TrendLens Insights' Privacy Policy. This policy explains how we collect, use, disclose, and safeguard your information when you visit our website www.trendlensinsights.com, including any other media form, media channel, mobile website, or mobile application related or connected thereto (collectively, the 'Site'). Please read this privacy policy carefully. If you do not agree with the terms of this privacy policy, please do not access the Site." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Information We Collect", content: [
|
||||
{ type: "paragraph", text: "We may collect information about you in a variety of ways. The information we may collect on the Site includes:" },
|
||||
{ type: "list", items: ["Personal Data: Personally identifiable information, such as your name, shipping address, email address, and telephone number, and demographic information, such as your age, gender, hometown, and interests, that you voluntarily give to us when you register with the Site or when you choose to participate in various activities related to the Site, such as online chat and message boards."] },
|
||||
{ type: "list", items: ["Derivative Data: Information our servers automatically collect when you access the Site, such as your IP address, your browser type, your operating system, your access times, and the pages you have viewed directly before and after accessing the Site."] }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. How We Use Your Information", content: [
|
||||
{ type: "paragraph", text: "Having accurate information about you permits us to provide you with a smooth, efficient, and customized experience. Specifically, we may use information collected about you via the Site to:" },
|
||||
{ type: "numbered-list", items: [
|
||||
"Create and manage your account.", "Email you regarding your account or order.", "Enable user-to-user communications.", "Generate a personal profile about you to make your visit to the Site more personalized.", "Monitor and analyze usage and trends to improve your experience with the Site.", "Notify you of updates to the Site."
|
||||
]}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Disclosure of Your Information", content: [
|
||||
{ type: "paragraph", text: "We may share information we have collected about you in certain situations. Your information may be disclosed as follows:" },
|
||||
{ type: "list", items: ["By Law or to Protect Rights: If we believe the release of information about you is necessary to respond to legal process, to investigate or remedy potential violations of our policies, or to protect the rights, property, and safety of others, we may share your information as permitted or required by any applicable law, rule, or regulation."] },
|
||||
{ type: "list", items: ["Third-Party Service Providers: We may share your information with third parties that perform services for us or on our behalf, including data analysis, email delivery, hosting services, customer service, and marketing assistance."] }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</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: "/#testimonials" },
|
||||
{ label: "Contact", href: "/#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "/privacy-policy" },
|
||||
{ label: "Terms of Service", href: "/terms-of-service" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 TrendLens Insights. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
111
src/app/terms-of-service/page.tsx
Normal file
111
src/app/terms-of-service/page.tsx
Normal file
@@ -0,0 +1,111 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
|
||||
export default function TermsOfServicePage() {
|
||||
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: "Privacy Policy", id: "/privacy-policy" },
|
||||
{ name: "Terms of Service", id: "/terms-of-service" }
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/flat-design-muted-colors-label-collection_23-2150072531.jpg"
|
||||
brandName="TrendLens Insights"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="terms-of-service" data-section="terms-of-service">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Terms of Service"
|
||||
sections={[
|
||||
{
|
||||
heading: "1. Acceptance of Terms", content: [
|
||||
{ type: "paragraph", text: "By accessing and using the TrendLens Insights website (www.trendlensinsights.com), you agree to be bound by these Terms of Service ('Terms'). If you do not agree to all the terms and conditions of this agreement, then you may not access the website or use any services. These Terms apply to all users of the site, including without limitation users who are browsers, vendors, customers, merchants, and/ or contributors of content." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "2. Use of the Site", content: [
|
||||
{ type: "paragraph", text: "You agree to use the Site only for lawful purposes and in a way that does not infringe the rights of, restrict or inhibit anyone else's use and enjoyment of the Site. Prohibited behavior includes harassing or causing distress or inconvenience to any other user, transmitting obscene or offensive content or disrupting the normal flow of dialogue within the Site." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "3. Intellectual Property", content: [
|
||||
{ type: "paragraph", text: "All content on the Site, including text, graphics, logos, images, as well as the compilation thereof, and any software used on the Site, is the property of TrendLens Insights or its suppliers and protected by copyright and other laws that protect intellectual property and proprietary rights. You agree to observe and abide by all copyright and other proprietary notices, legends or other restrictions contained in any such content and will not make any changes thereto." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "4. Disclaimer of Warranties", content: [
|
||||
{ type: "paragraph", text: "The information, software, products, and services included in or available through the Site may include inaccuracies or typographical errors. TrendLens Insights and/or its suppliers may make improvements and/or changes in the Site at any time. TrendLens Insights and/or its suppliers make no representations about the suitability, reliability, availability, timeliness, and accuracy of the information, software, products, services and related graphics contained on the Site for any purpose." }
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "5. Limitation of Liability", content: [
|
||||
{ type: "paragraph", text: "To the maximum extent permitted by applicable law, in no event shall TrendLens Insights and/or its suppliers be liable for any direct, indirect, punitive, incidental, special, consequential damages or any damages whatsoever including, without limitation, damages for loss of use, data or profits, arising out of or in any way connected with the use or performance of the Site, with the delay or inability to use the Site or related services, the provision of or failure to provide services, or for any information, software, products, services and related graphics obtained through the Site, or otherwise arising out of the use of the Site, whether based on contract, tort, negligence, strict liability or otherwise." }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</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: "/#testimonials" },
|
||||
{ label: "Contact", href: "/#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "/privacy-policy" },
|
||||
{ label: "Terms of Service", href: "/terms-of-service" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 TrendLens Insights. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user