← back to Norma

app/api/boilerplate/route.ts

11 lines

import { NextResponse } from 'next/server';
import { BOILERPLATE_BLOCKS } from '@/lib/boilerplate';

/**
 * GET /api/boilerplate
 * Return static boilerplate blocks. No auth required (data is static/public).
 */
export async function GET() {
  return NextResponse.json({ blocks: BOILERPLATE_BLOCKS });
}