From a132a5a35282dbb0c75d531ae7e5149e452bf5fd Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 12:00:10 +0000 Subject: [PATCH] Add src/app/about/page.tsx --- src/app/about/page.tsx | 200 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 200 insertions(+) create mode 100644 src/app/about/page.tsx diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..0ee665c --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,200 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import HeroSplit from "@/components/sections/hero/HeroSplit"; +import TextSplitAbout from "@/components/sections/about/TextSplitAbout"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import TeamCardTen from "@/components/sections/team/TeamCardTen"; +import FeatureBento from "@/components/sections/feature/FeatureBento"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Zap, Users, Globe, Zap as Rocket, Heart, Target, Headphones, TrendingUp, Award } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}