diff --git a/platform/src/app/me/ai-usage/loading.tsx b/platform/src/app/me/ai-usage/loading.tsx new file mode 100644 index 0000000..296528c --- /dev/null +++ b/platform/src/app/me/ai-usage/loading.tsx @@ -0,0 +1,29 @@ +import { Skeleton } from "@/components/ui/skeleton"; + +export default function PersonalAIUsageLoading() { + return ( +
+
+ + + +
+ +
+ {Array.from({ length: 4 }).map((_, i) => ( + + ))} +
+ +
+ + +
+ +
+ + +
+
+ ); +}