--- /** * ============================================================ * SVGarden — https://www.svgarden.dev * Author : Simon-Pierre Boucher * Contact: contact@spboucher.ai * File : src/components/SnippetCard.astro * Desc : Gallery card — lazy live preview, title, category + difficulty badges * ============================================================ */ import LivePreview from './LivePreview.astro'; interface Props { snippet: { slug: string; title: string; category: string; difficulty: string; tags: string[]; techniques: string[]; code: string; created: string; }; } const { snippet } = Astro.props; // "New" badge for snippets created in the last 14 days (evaluated at build time) const isNew = Date.now() - Date.parse(snippet.created) < 14 * 24 * 60 * 60 * 1000; ---

{snippet.title}

{isNew && New} {snippet.category} {snippet.difficulty} {snippet.tags.slice(0, 3).map((t) => {t})}