Add src/app/profile/page.tsx

This commit is contained in:
2026-04-07 06:19:45 +00:00
parent 1deaf81821
commit 4eaea11ad4

60
src/app/profile/page.tsx Normal file
View File

@@ -0,0 +1,60 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import FooterBase from '@/components/sections/footer/FooterBase';
export default function ProfileDashboard() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="background-highlight"
borderRadius="soft"
contentWidth="medium"
sizing="largeSmallSizeLargeTitles"
background="floatingGradient"
cardStyle="gradient-radial"
primaryButtonStyle="shadow"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Features", id: "/#features" },
{ name: "Gallery", id: "/#gallery" },
{ name: "Profile", id: "/profile" },
{ name: "Contact", id: "/#contact" },
]}
brandName="AI Fashion"
/>
<div className="pt-32 pb-16 px-4">
<h1 className="text-4xl font-bold mb-8 text-center">My Design Dashboard</h1>
<ProductCardTwo
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
title="Saved Designs"
description="Manage your curated collection of AI-generated fashion pieces."
products={[
{ id: "s1", brand: "User", name: "Neon Concept 01", price: "Saved", imageSrc: "http://img.b2bpic.net/free-photo/woman-posing-with-plastic-foil_23-2148864918.jpg?_wi=1" },
{ id: "s2", brand: "User", name: "Gold Concept 02", price: "Saved", imageSrc: "http://img.b2bpic.net/free-photo/young-woman-wearing-chain-necklace_23-2149490489.jpg?_wi=1" },
]}
/>
</div>
<FooterBase
columns={[
{ title: "Account", items: [{ label: "Settings", href: "#" }, { label: "Logout", href: "#" }] },
{ title: "Support", items: [{ label: "Help", href: "#" }] }
]}
logoText="AI Fashion"
/>
</ReactLenis>
</ThemeProvider>
);
}