'use client' import {demoCategories} from './data/demos' import Image from 'next/image' import Link from 'next/link' import {motion} from 'framer-motion' export default function Home() { return (

Demos

{demoCategories.map((section) => (

{section.label}

{section.items.map((demo) => ( {`${demo.name}

{demo.name}

{demo.description?.length > 0 && (
    {demo.description.map((line, i) => (
  • {line}
  • ))}
)}
Demo Öffnen
))}
))}
) }