import { NextResponse } from "next/server";
import { getCmsSiteProfile } from "@/lib/db-data";

export async function GET() {
  const profile = await getCmsSiteProfile();
  return NextResponse.json({ ok: true, profile });
}
