diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..82dd8a9 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,137 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import MetricCardFourteen from "@/components/sections/metrics/MetricCardFourteen"; +import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterCard from "@/components/sections/footer/FooterCard"; +import { Mail, Twitter, Linkedin } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}