import "@styles/Projects.scss"; import Badge from "@components/Badge"; import { BadgeType } from "@components/BadgeType"; function Project({ name, description, image, link, }: { name: string; description: string; image?: string; link: string; }) { const imageUrl = image || "https://source.unsplash.com/random/500x400?javascript&sig=" + Math.random() * 1000; return (
{description}