"use client"; import React from "react"; type OrbitCardProps = { children: React.ReactNode; className?: string; }; const OrbitCard: React.FC = ({ children, className }) => { return (
{/* Glowing shadow background */}
{/* Card Content */}
{children}
{/* Keyframes for glowing effect */}
); }; export default OrbitCard;