diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..d62c96a --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,183 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroOverlay from '@/components/sections/hero/HeroOverlay'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve'; +import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import { Award, CheckCircle, Users, Clock, Zap, Phone, Mail, MapPin, Target, Lightbulb, Heart } from 'lucide-react'; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ +
+
+ +
+
+ +
+ +
+ + +
+ ); +}