diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..7f4f61f --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,93 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import { Sparkles } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 812977a..7c2a683 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -32,7 +32,7 @@ export default function LandingPage() { navItems={[ { name: "Services", id: "services" }, { name: "Portfolio", id: "work" }, - { name: "About", id: "team" }, + { name: "About", id: "/about" }, { name: "Contact", id: "contact" } ]} button={{ text: "Get Started", href: "#contact" }} @@ -283,7 +283,7 @@ export default function LandingPage() { }, { items: [ - { label: "About Us", href: "#" }, + { label: "About Us", href: "/about" }, { label: "Case Studies", href: "#work" }, { label: "Blog", href: "#" } ]