add customer account api

This commit is contained in:
tedraykov
2024-06-14 01:07:20 +03:00
parent 8f82f6299e
commit 3694fef9a6
26 changed files with 4311 additions and 2338 deletions

View File

@@ -0,0 +1,13 @@
export const runtime = 'edge';
export default async function LogoutPage() {
return (
<>
<div className="mx-auto max-w-screen-2xl px-4">
<div className="flex flex-col rounded-lg border border-neutral-200 bg-white p-8 dark:border-neutral-800 dark:bg-black md:p-12 lg:flex-row lg:gap-8">
<div className="h-full w-full">Loading...</div>
</div>
</div>
</>
);
}