diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..62b97f6 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,76 @@ +"use client"; +import { Mail } from "lucide-react"; +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline"; +import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout"; +import ContactSplit from "@/components/sections/contact/ContactSplit"; +import FooterLogoReveal from "@/components/sections/footer/FooterLogoReveal"; + +export default function AboutPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +}