From b11e485ad17eae0693e26c3762aa57f2ef3422c4 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 2 Jun 2026 21:23:05 +0000 Subject: [PATCH] Add src/app/about/page.tsx --- src/app/about/page.tsx | 181 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 181 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..217ab8a --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,181 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; + +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import TextAbout from '@/components/sections/about/TextAbout'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import MetricCardThree from '@/components/sections/metrics/MetricCardThree'; +import ContactCTA from '@/components/sections/contact/ContactCTA'; + +import { Award, Clock, Gauge, Sparkles, Star, Users, Phone, ShoppingCart, CalendarDays } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+ +
+ +
+ +
+ +
+ +
+ +
+ + +
+
+ ); +}