From 3f5f98eb3eb4f9ea6ca1e3ca06268b2219a21341 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 11:55:38 +0000 Subject: [PATCH] Add src/app/about/page.tsx --- src/app/about/page.tsx | 175 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 175 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..8948146 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,175 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import TextAbout from "@/components/sections/about/TextAbout"; +import AboutMetric from "@/components/sections/about/AboutMetric"; +import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import { Zap, Sparkles, Award, Headphones, Users, Globe, Lightbulb, Heart } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}