diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..338a741 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,201 @@ +"use client"; + +import { Code, User, Zap, Briefcase, MessageSquare } from "lucide-react"; +import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; +import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; +import FeatureCardSix from "@/components/sections/feature/FeatureCardSix"; +import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo"; +import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; +import FooterBase from "@/components/sections/footer/FooterBase"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 03d4689..654ce52 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -30,7 +30,8 @@ export default function LandingPage() { ); -} +} \ No newline at end of file