import { FadeIn } from "./fade-in"; const PLACEHOLDER_APPS = [ { icon: "⚡", label: "App 1 — binnenkort" }, { icon: "🔧", label: "App 2 — binnenkort" }, { icon: "📱", label: "App 3 — binnenkort" }, ]; export function AppsSection() { return (

Portfolio

Apps & Projecten

Hier komen links naar mijn apps die ik op Vercel host.

{PLACEHOLDER_APPS.map((app, i) => (
{app.icon}

{app.label}

))}
); }