From 1460ce29ec38de8223a2527d1a08b11e27b5469a Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 11:55:26 +0000 Subject: [PATCH 1/3] Update src/app/page.tsx --- src/app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 0f7615f..359a87d 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -155,4 +155,4 @@ export default function LandingPage() { ); -} \ No newline at end of file +} From dc1ab752b60090d04fa3e1fc186886fc936e46b8 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 11:55:26 +0000 Subject: [PATCH 2/3] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 057d811..c646970 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f5f5; - --card: #ffffff; - --foreground: #1c1c1c; - --primary-cta: #1c1c1c; + --background: #020617; + --card: #0f172a; + --foreground: #e2e8f0; + --primary-cta: #c4d8f9; --primary-cta-text: #f5f5f5; - --secondary-cta: #ffffff; + --secondary-cta: #041633; --secondary-cta-text: #1c1c1c; - --accent: #159c49; - --background-accent: #a8e8ba; + --accent: #2d30f3; + --background-accent: #1d4ed8; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); From ecf123b6ad5fe3c53c39f4e1c5f33c49e93ab7f3 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 15 May 2026 11:55:27 +0000 Subject: [PATCH 3/3] Update src/app/user-profile/page.tsx --- src/app/user-profile/page.tsx | 54 +++++++++++++++++++++++------------ 1 file changed, 35 insertions(+), 19 deletions(-) diff --git a/src/app/user-profile/page.tsx b/src/app/user-profile/page.tsx index 2591636..9526f49 100644 --- a/src/app/user-profile/page.tsx +++ b/src/app/user-profile/page.tsx @@ -4,6 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; +import ProductDetailCard from '@/components/ecommerce/productDetail/ProductDetailCard'; export default function UserProfilePage() { return ( @@ -20,25 +21,40 @@ export default function UserProfilePage() { headingFontWeight="semibold" > - -
-

User Profile

-

Manage your custom nickname and community identity here.

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