diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..f469973 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,121 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FeatureCardTwentyEight from '@/components/sections/feature/FeatureCardTwentyEight'; +import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import { Heart, Users, BrainCircuit, Target, BookOpen, ShieldCheck, Clock } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +}