import React from "react"; function Section({ title, children }: { title: string; children: React.ReactNode }) { return (

{title}

{children}
); } const shimmerStyle: React.CSSProperties = { background: "linear-gradient(90deg, var(--flux-grey-100) 25%, var(--flux-grey-50, #f9fafb) 50%, var(--flux-grey-100) 75%)", backgroundSize: "200% 100%", animation: "shimmer 1.5s infinite", }; function Skeleton({ className }: { className: string }) { return
; } export default function SkeletonDemo() { return (
); }