import { projects } from "@/data/projects"; import { ArrowRight } from "lucide-react"; import Image from "next/image"; import Link from "next/link"; import ScrollReveal from "./ScrollReveal"; export default function Projects() { return (
{/* Section header */}

Projects

Selected work.

Broadcast facility design and systems integration for enterprise, sports, aerospace, and financial services clients.

{/* Project grid */}
{projects.map((project, index) => ( {/* Thumbnail image */}
{project.title} {/* Gradient overlay */}
{/* Hover tint */}
{/* Category badge on image */}
{project.category}
{/* Content */}
{project.year}

{project.client}

{project.summary}

View Case Study
))}
); }