import { Navigation } from "@/components/navigation"; import { ProjectCard } from "@/components/project-card"; import { getProjects } from "@/lib/content"; import type { Metadata } from "next"; export const metadata: Metadata = { title: "Projects", description: "A collection of my projects and side work", }; export default function ProjectsPage() { const projects = getProjects(); return (

Projects

A collection of projects I've built and contributed to

{projects.map((project) => ( ))}
); }