feat: route structure, providers, layouts, and placeholder pages

This commit is contained in:
zetaloop
2026-02-20 12:43:34 +08:00
parent 1f87f4676e
commit 3093da1665
35 changed files with 324 additions and 70 deletions
+16
View File
@@ -0,0 +1,16 @@
export default function AccountLayout({ children }: { children: React.ReactNode }) {
return (
<div className="flex min-h-screen">
<aside className="w-64 border-r bg-muted/30 p-4">
<h2 className="mb-4 text-lg font-semibold"></h2>
<nav className="space-y-2 text-sm text-muted-foreground">
<div></div>
<div></div>
<div></div>
<div></div>
</nav>
</aside>
<main className="flex-1 p-6">{children}</main>
</div>
)
}
+8
View File
@@ -0,0 +1,8 @@
export default function NotificationsPage() {
return (
<div>
<h1 className="text-2xl font-bold"></h1>
<p className="mt-2 text-muted-foreground"></p>
</div>
)
}
+8
View File
@@ -0,0 +1,8 @@
export default function SettingsPage() {
return (
<div>
<h1 className="text-2xl font-bold"></h1>
<p className="mt-2 text-muted-foreground"></p>
</div>
)
}
+8
View File
@@ -0,0 +1,8 @@
export default function VerifyPage() {
return (
<div>
<h1 className="text-2xl font-bold"></h1>
<p className="mt-2 text-muted-foreground"></p>
</div>
)
}
+8
View File
@@ -0,0 +1,8 @@
export default function WalletPage() {
return (
<div>
<h1 className="text-2xl font-bold"></h1>
<p className="mt-2 text-muted-foreground"></p>
</div>
)
}