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 (
{ window.open(link, "_blank"); }} > {name} {!image ? Placeholder image : null}

{name}

{description}

); } export default function Projects() { return (

Projects

Public Projects

{" "} {" "} {" "}
); }