suna/frontend/src/app/dashboard/[accountSlug]/page.tsx

11 lines
485 B
TypeScript
Raw Normal View History

2025-04-12 02:57:17 +08:00
import { PartyPopper } from "lucide-react";
export default function PersonalAccountPage() {
return (
<div className="flex flex-col gap-y-4 py-12 h-full w-full items-center justify-center content-center max-w-screen-md mx-auto text-center">
<PartyPopper className="h-12 w-12 text-gray-400" />
<h1 className="text-2xl font-bold">Team Account</h1>
<p>Here's where you'll put all your awesome team dashboard items</p>
</div>
)
}