"use client"; import React, { useEffect, useId, useState } from "react"; import { AnimatePresence, motion } from "framer-motion"; import { useRef } from "react"; import { cn } from "@/lib/utils"; import { SparklesCore } from "@/components/ui/sparkles"; export const Cover = ({ children, className, }: { children?: React.ReactNode; className?: string; }) => { return (
{children}
); }; export const CircleIcon = ({ className, delay, }: { className?: string; delay?: number; }) => { return (
); };