From 0aceac318c13f25303a454fec754f24c74f4d2fc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 13 May 2026 11:25:35 +0000 Subject: [PATCH] Add src/app/profile/page.tsx --- src/app/profile/page.tsx | 63 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 src/app/profile/page.tsx diff --git a/src/app/profile/page.tsx b/src/app/profile/page.tsx new file mode 100644 index 0000000..9a93da2 --- /dev/null +++ b/src/app/profile/page.tsx @@ -0,0 +1,63 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; + +export default function ProfilePage() { + return ( + + + + +
+

Account Settings

+
+
+
+ + +
+
+ + +
+ +
+
+
+ + +
+
+ ); +} \ No newline at end of file