@@ -7,10 +7,9 @@ import { validateOrGetDefaultPlatform } from '@/utils/platform';
7
7
import { Badges } from './Badges' ;
8
8
import Link from 'next/link' ;
9
9
import { ShareDialog } from './ShareDialog' ;
10
- import { ProfileAvatar , ProfileAvatarSkeleton } from './ProfileAvatar' ;
11
- import { Feed , FeedSkeleton } from './Feed' ;
10
+ import { ProfileAvatar } from './ProfileAvatar' ;
11
+ import { Feed } from './Feed' ;
12
12
import { validateOrGetDefaultNetwork } from '@/utils/validateOrGetDefaultNetwork' ;
13
- import { Skeleton } from '@/components/ui/skeleton' ;
14
13
15
14
export default async function Page ( {
16
15
params : { slug } ,
@@ -74,31 +73,6 @@ export default async function Page({
74
73
) ;
75
74
}
76
75
77
- export const PageSkeleton = ( ) => {
78
- return (
79
- < Container className = "pt-16 max-w-[1440px] overflow-auto" >
80
- < div className = "flex max-lg:flex-col w-full gap-4" >
81
- < div className = "lg:w-[30%] min-w-[300px] w-full" >
82
- < div className = "flex flex-col gap-y-2 text-center items-center" >
83
- < ProfileAvatarSkeleton size = "5xl" />
84
- < div className = "text-3xl font-semibold" >
85
- < Skeleton className = "w-[140px] h-9 bg-primary-200 rounded-3xl" />
86
- </ div >
87
- < div className = "flex gap-x-1 items-center text-md text-gray-600 font-medium" >
88
- < Skeleton className = "w-[160px] h-8 bg-primary-200 rounded-3xl" />
89
- < Skeleton className = "w-[100px] h-8 bg-primary-200 rounded-3xl" />
90
- </ div >
91
- < Skeleton className = "mt-2 w-[260px] h-6 bg-primary-200 rounded-3xl" />
92
- </ div >
93
- </ div >
94
- < div className = "w-full" >
95
- < FeedSkeleton />
96
- </ div >
97
- </ div >
98
- </ Container >
99
- ) ;
100
- } ;
101
-
102
76
// export async function generateMetadata({
103
77
// params: { slug },
104
78
// }: {
0 commit comments