diff --git a/src/app/client-stories/page.tsx b/src/app/client-stories/page.tsx
new file mode 100644
index 0000000..4f8f04e
--- /dev/null
+++ b/src/app/client-stories/page.tsx
@@ -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 (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
new file mode 100644
index 0000000..b201cf4
--- /dev/null
+++ b/src/app/contact/page.tsx
@@ -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 (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/app/page.tsx b/src/app/page.tsx
index 45b182f..6bdeef5 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -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() {
/>
-
-
-
+
-
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}
diff --git a/src/app/terms-of-service/page.tsx b/src/app/terms-of-service/page.tsx
new file mode 100644
index 0000000..82bd281
--- /dev/null
+++ b/src/app/terms-of-service/page.tsx
@@ -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 (
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+}