app/api/boilerplate/route.ts
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 });
}