From 406f28981996dca5befaf4d184da1bfcfd3775dd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 09:18:19 +0000 Subject: [PATCH] Add src/app/account/page.tsx --- src/app/account/page.tsx | 109 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 src/app/account/page.tsx diff --git a/src/app/account/page.tsx b/src/app/account/page.tsx new file mode 100644 index 0000000..5e0cd4e --- /dev/null +++ b/src/app/account/page.tsx @@ -0,0 +1,109 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; + +export default function AccountPage() { + return ( + + + +
+
+

User Account

+

Manage your profile, orders, and settings.

+ {/* Placeholder for user account content */} +
+
+ +
+
+ ); +}