diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx new file mode 100644 index 0000000..7bbd077 --- /dev/null +++ b/src/app/about-us/page.tsx @@ -0,0 +1,147 @@ +"use client"; + +import { ThemeProvider } from "next-themes"; +import { Sparkles, Users, Trophy } from "lucide-react"; +import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; +import SplitAbout from '@/components/sections/about/SplitAbout'; +import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree'; +import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; +import SocialProofOne from '@/components/sections/socialProof/SocialProofOne'; +import PlainBackground from '@/components/background/PlainBackground'; + +export default function AboutUsPage() { + const navItems = [ + { name: 'Home', id: '/' }, + { name: 'About Us', id: '/about-us' } + ]; + + return ( + + + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+ ); +}