feat: add admin site config page and optimize my page

Add "Site Configuration" page and refactor "My" page
Expand store with site, menu, and page configurations.

#VERCEL_SKIP

Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
This commit is contained in:
v0
2026-01-14 07:57:58 +00:00
parent b487855d44
commit 7e1e2e7115
5 changed files with 555 additions and 117 deletions

View File

@@ -0,0 +1,14 @@
export default function Loading() {
return (
<div className="p-8 max-w-4xl mx-auto">
<div className="animate-pulse">
<div className="h-8 bg-gray-700 rounded w-1/4 mb-8" />
<div className="space-y-6">
<div className="h-64 bg-[#0f2137] rounded-xl" />
<div className="h-48 bg-[#0f2137] rounded-xl" />
<div className="h-64 bg-[#0f2137] rounded-xl" />
</div>
</div>
</div>
)
}