From eb98f9cfc6394d44898be21b03eb3617033ae2ab Mon Sep 17 00:00:00 2001 From: Bakhtiyor Ganijon Date: Wed, 29 Nov 2023 20:13:35 +0900 Subject: [PATCH] Init user page loading screen --- app/(Main)/[username]/loading.tsx | 59 +++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 app/(Main)/[username]/loading.tsx diff --git a/app/(Main)/[username]/loading.tsx b/app/(Main)/[username]/loading.tsx new file mode 100644 index 0000000..c4e5200 --- /dev/null +++ b/app/(Main)/[username]/loading.tsx @@ -0,0 +1,59 @@ + +import PostCardSkeletonV2 from "@/components/skeletons/post-card-1"; +import { Skeleton } from "@/components/ui/skeleton"; + +export default function Loading() { + return ( + <> +
+
+
+
+
+
+
+
+
+ + +
+
+
+
+ + + +
+ + + +
+ +
+ + +
+ +
    + + + +
+
+
+
+
+
+ + + + + +
+
+
+
+
+ + ) +} \ No newline at end of file