diff --git a/src/app/about-me/page.tsx b/src/app/about-me/page.tsx new file mode 100644 index 0000000..4e920b5 --- /dev/null +++ b/src/app/about-me/page.tsx @@ -0,0 +1,103 @@ +"use client" + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import HeroSplitKpi from '@/components/sections/hero/HeroSplitKpi'; +import ContactText from '@/components/sections/contact/ContactText'; +import FooterMedia from '@/components/sections/footer/FooterMedia'; +import { MapPin, Users, Award, Zap } from 'lucide-react'; + +export default function AboutMePage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} \ No newline at end of file