import { ProjectCard } from '@/components/ui/ProjectCard' import type { Project } from '@/types' interface ProjectsSectionProps { projects: Project[] } export function ProjectsSection({ projects }: ProjectsSectionProps) { return (
{/* Header */}
Work

Featured Projects

Production-grade systems I've built — from concept to deployment

{/* Grid */}
{projects.map((project, index) => ( ))}
{/* View more */}
View All on GitHub
) }