diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..da773d7 --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,145 @@ +"use client"; + +import ReactLenis from "lenis/react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; +import TeamCardOne from "@/components/sections/team/TeamCardOne"; +import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Leaf, TreePine } from "lucide-react"; + +export default function AboutUsPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file