From 7df184655e7e4557cd8377f1a36f1a4c162c9b01 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 11:46:23 +0000 Subject: [PATCH] Switch to version 3: modified src/app/about-us/page.tsx --- src/app/about-us/page.tsx | 257 +++++++++++++++++--------------------- 1 file changed, 117 insertions(+), 140 deletions(-) diff --git a/src/app/about-us/page.tsx b/src/app/about-us/page.tsx index 584c7d1..1bf0bc2 100644 --- a/src/app/about-us/page.tsx +++ b/src/app/about-us/page.tsx @@ -1,16 +1,18 @@ "use client"; -import { ThemeProvider } from "@/components/provider/ThemeProvider"; -import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen'; -import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +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 TeamCardTwo from '@/components/sections/team/TeamCardTwo'; +import PlainBackground from '@/components/background/PlainBackground'; -export default function AboutUs() { +export default function AboutUsPage() { const navItems = [ - { name: "Home", id: "/" }, - { name: "About Us", id: "/about-us" } + { name: 'Home', id: '/' }, + { name: 'About Us', id: '/about-us' } ]; return ( @@ -26,144 +28,119 @@ export default function AboutUs() { secondaryButtonStyle="glass" headingFontWeight="bold" > - + -
-
- -
+
+ + +
-
- + + -
+ ]} + gridVariant="four-items-2x2-equal-grid" + animationType="blur-reveal" + textboxLayout="default" + useInvertedBackground={false} + /> + -
- -
+
+ + +
-
- -
- -
- -
- -
- -
- -
- -
-
+
+ + +
); }