diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..c72697f --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,165 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; +import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Sparkles, Users, Award, MapPin } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 9468c14..a49d6c9 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -29,9 +29,9 @@ export default function LandingPage() { ); -} \ No newline at end of file +}