// components/presentation/Skeleton.tsx import { motion } from "framer-motion"; import React from "react"; export const SkeletonItem = ({ className, delay = 0, }: { className: string; delay?: number; }) => ( ); export const SkeletonSection = ({ title, items, gridCols = false, }: { title?: boolean; items: number; gridCols?: boolean; }) => (
{title && }
{Array.from({ length: items }).map((_, i) => ( ))}
);