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>
15 lines
450 B
TypeScript
15 lines
450 B
TypeScript
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>
|
|
)
|
|
}
|