Add src/app/profile/page.tsx

This commit is contained in:
2026-03-30 01:37:28 +00:00
parent 8e320e4f82
commit eae2fa57ef

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

@@ -0,0 +1,24 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function ProfilePage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleApple
navItems={[{ name: "Home", id: "/" }, { name: "Feed", id: "/feed" }, { name: "Profile", id: "/profile" }, { name: "Messages", id: "/messaging" }, { name: "Contact", id: "/contact" }]}
brandName="Connect"
/>
<main className="container mx-auto py-24 min-h-screen">
<h1 className="text-4xl font-bold mb-8">User Profile</h1>
<p className="text-lg">Manage your personal identity, settings, and showcase your creative works.</p>
</main>
<FooterLogoReveal logoText="Connect" leftLink={{ text: "Privacy", href: "#" }} rightLink={{ text: "Terms", href: "#" }} />
</ReactLenis>
</ThemeProvider>
);
}