base commit
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import { Outlet } from 'react-router';
|
||||
import { Header } from '../components/layout/Header';
|
||||
import { AccountSidebar } from '../components/layout/AccountSidebar';
|
||||
|
||||
export function AccountLayout() {
|
||||
return (
|
||||
<div className="min-h-screen flex flex-col">
|
||||
<Header cartCount={2} />
|
||||
<div className="flex flex-1">
|
||||
<AccountSidebar />
|
||||
<main className="flex-1 p-8 bg-background">
|
||||
<Outlet />
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user