import Image from "next/image"; const projects = [ { title: "Surfers Paradise", tags: ["Social Media", "Photography"], image: "/portfolio-1.jpg", tall: true, }, { title: "Cyberpunk Caffe", tags: ["Social Media", "Photography"], image: "/portfolio-2.jpg", tall: false, }, { title: "Agency 976", tags: ["Social Media", "Photography"], image: "/portfolio-3.jpg", tall: false, }, { title: "Minimal Playground", tags: ["Social Media", "Photography"], image: "/portfolio-4.jpg", tall: true, }, ]; function ArrowIcon() { return (
{/* eslint-disable-next-line @next/next/no-img-element */}
); } function ProjectCard({ title, tags, image, tall, }: { title: string; tags: string[]; image: string; tall: boolean; }) { return (
{title}
{tags.map((tag) => ( {tag} ))}

{title}

); } export function Portfolio() { return (
{/* Header */}

Selected
Work

004
[ portfolio ]
{/* Mobile: single column */}
{projects.map((p) => ( ))}
{/* Desktop: two-column */}
{/* Left column */}
{/* CTA callout */}
{/* Left bracket pair */}
{/* Content */}

Discover how my creativity transforms ideas into impactful digital experiences — schedule a call with me to get started.

{/* Right bracket pair */}
{/* Right column (offset down) */}
); }