mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
export default async function ProfilePage() {
|
|
return (
|
|
<section className="mt-4 grid max-w-screen-2xl gap-4 px-4 pb-4">
|
|
<h1 className="text-2xl font-bold">Personal Area</h1>
|
|
</section>
|
|
);
|
|
}
|