import { Card, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; import Link from "next/link"; interface Project { title: string; description: string; githubUrl: string; } const projects: Project[] = [ { title: "Boilerplate", description: "A comprehensive starter template for modern web development projects.", githubUrl: "https://github.com/schererleander/boilerplate", }, { title: "Quiz Website", description: "An interactive quiz platform built to test your knowledge.", githubUrl: "https://github.com/schererleander/quiz", }, { title: "Space Invaders", description: "A classic arcade game clone recreated with modern web technologies.", githubUrl: "https://github.com/schererleander/spaceinvaders", }, { title: "Specula", description: "A mirror project or reflection tool (Description inferred from name).", githubUrl: "https://github.com/schererleander/specula", }, ]; export function ProjectsGrid() { return (
{projects.map((project) => (
{project.title} {project.description} ))}
); }