diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..907758c --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,188 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; +import FeatureCardTwentyNine from '@/components/sections/feature/featureCardTwentyNine/FeatureCardTwentyNine'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; +import { Facebook, Linkedin, Twitter, Instagram } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file