diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..20e6503 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,58 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +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 f9c557b..4a16d51 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -33,7 +33,7 @@ export default function LandingPage() { @@ -189,12 +190,12 @@ export default function LandingPage() { imageSrc="http://img.b2bpic.net/free-photo/3d-rendering-orange-light-blue-lights-forming-circle-futuristic-concept_181624-59574.jpg" logoText="Pathfinder CS" columns={[ - { title: "Platform", items: [{ label: "Assessments", href: "#features" }, { label: "Domains", href: "#domains" }] }, - { title: "Support", items: [{ label: "FAQ", href: "#faq" }, { label: "Contact", href: "#contact" }] } + { title: "Platform", items: [{ label: "Assessments", href: "/#features" }, { label: "Domains", href: "/#domains" }] }, + { title: "Support", items: [{ label: "FAQ", href: "/#faq" }, { label: "Contact", href: "/#contact" }] } ]} /> ); -} \ No newline at end of file +}