SPB Git

spb/svgarden Public

SVGarden — searchable bank of 74 self-contained SVG+CSS animation snippets (svgarden.dev)

HTML 79.2% Astro 10.3% JavaScript 6% CSS 3.7% Shell 0.8%
653 B · 19 lines javascript
Raw Blame History
1/**2 * ============================================================3 * SVGarden — https://www.svgarden.dev4 * Author : Simon-Pierre Boucher5 * Contact: contact@spboucher.ai6 * File   : src/pages/build-info.json.js7 * Desc   : Build-time endpoint — timestamp + snippet count for /healthz8 * ============================================================9 */10import { loadSnippets } from '../lib/snippets.mjs';1112export async function GET() {13  const snippets = await loadSnippets();14  return new Response(15    JSON.stringify({ built: new Date().toISOString(), snippets: snippets.length }),16    { headers: { 'Content-Type': 'application/json' } }17  );18}19