import Card from "@/components/Card"; interface Props { className?: string; } const Awards = ({ className }: Props) => { return (

Awards

); }; export default Awards;