erm what the sigma

This commit is contained in:
NotII
2025-03-24 13:43:42 +00:00
parent 6fafe69f2c
commit edcd0c1e06
11 changed files with 562 additions and 16 deletions

View File

@@ -0,0 +1,15 @@
import Layout from "@/components/layout/layout";
import PageLoading from "@/components/dashboard/page-loading";
export default function ProductsLoading() {
return (
<Layout>
<PageLoading
title="Loading products..."
subtitle="Please wait while we fetch your store's product data"
layout="grid"
itemsCount={8}
/>
</Layout>
);
}