diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..b48a2b1 --- /dev/null +++ b/src/app/about/page.tsx @@ -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 ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index a7101ec..f4887d9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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"}, ], }, {