Add src/app/vendor-profile/page.tsx
This commit is contained in:
26
src/app/vendor-profile/page.tsx
Normal file
26
src/app/vendor-profile/page.tsx
Normal file
@@ -0,0 +1,26 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
|
||||
export default function VendorProfile() {
|
||||
return (
|
||||
<ThemeProvider>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Dashboard", href: "/vendor-dashboard" },
|
||||
{ name: "Products", href: "/product-management" },
|
||||
{ name: "Orders", href: "/order-management" },
|
||||
{ name: "Analytics", href: "/analytics" },
|
||||
{ name: "Profile", href: "/vendor-profile" }
|
||||
]}
|
||||
brandName="MarketConnect"
|
||||
/>
|
||||
<main className="pt-32 pb-20 px-6 max-w-7xl mx-auto">
|
||||
<h1 className="text-4xl font-bold mb-8">Profile Settings</h1>
|
||||
<p className="text-lg">Manage your vendor account details, store info, and notification settings.</p>
|
||||
</main>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user