diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..e4a9e0f --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,92 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterSimple from '@/components/sections/footer/FooterSimple'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import { PawPrint, Clock, Heart } from "lucide-react"; + +export default function AboutPage() { + return ( + + + + +
+ +
+ + +
+
+ ); +}