diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..19f6ba2 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,99 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import TestimonialCardSixteen from '@/components/sections/testimonial/TestimonialCardSixteen'; +import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal'; +import { Sparkles, Quote, Users } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 31bf94a..c62bab0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -26,7 +26,7 @@ export default function ContactPage() { { name: "Services", id: "services" }, { name: "Process", id: "process" }, { name: "For", id: "for" }, - { name: "About", id: "about" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" } ]} /> diff --git a/src/app/page.tsx b/src/app/page.tsx index fc85204..7cbe7c9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -34,7 +34,7 @@ export default function LandingPage() { { name: "Services", id: "services" }, { name: "Process", id: "process" }, { name: "For", id: "for" }, - { name: "About", id: "about" }, + { name: "About", id: "/about" }, { name: "Contact", id: "/contact" } ]} />