diff --git a/servers/nextjs/app/(presentation-generator)/dashboard/loading.tsx b/servers/nextjs/app/(presentation-generator)/dashboard/loading.tsx index 1ba9be0f..d3350f27 100644 --- a/servers/nextjs/app/(presentation-generator)/dashboard/loading.tsx +++ b/servers/nextjs/app/(presentation-generator)/dashboard/loading.tsx @@ -1,16 +1,29 @@ import { Skeleton } from '@/components/ui/skeleton' import React from 'react' +import Header from './components/Header' +import Wrapper from '@/components/Wrapper' const loading = () => { return ( -
-
- {Array.from({ length: 10 }).map((_, index) => ( - - ))} -
+
+
+ +
+ +

+ Slide Presentation +

+
+ { + Array.from({ length: 8 }).map((_, index) => ( + + )) + }
+
+
+
) } -export default loading +export default loading \ No newline at end of file