"use client"; import Link, { useLinkStatus } from "next/link"; import type { ReactNode } from "react"; import "./Card.css"; type Props = { href: string; accentColor: string; backgroundColor: string; children: ReactNode; }; function CardBg({ accentColor, backgroundColor, children }: Omit) { const { pending } = useLinkStatus(); return (
{children}
); } export function Card({ href, accentColor, backgroundColor, children }: Props) { return ( {children} ); }