import { Skeleton } from '@/components/ui/skeleton'; import { View } from '@/components/ui/view'; import { useColor } from '@/hooks/useColor'; import { BORDER_RADIUS } from '@/theme/globals'; import React from 'react'; export function SkeletonProfile() { const card = useColor('card'); return ( {/* Profile Picture */} {/* Name and Title */} {/* Stats */} {/* Bio */} ); }