Align Sidebar & BottomNav menus, remove "Search", add user profile mock data, implement /api/users, add FilterDrawer, complete Section, ProfileHeader, MetricsRFM components Co-authored-by: null <4804959+fnvtk@users.noreply.github.com>
8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
import { NextResponse } from "next/server"
|
|
import { getGroupSummary } from "@/services/rfm-engine"
|
|
|
|
export async function GET() {
|
|
const data = getGroupSummary()
|
|
return NextResponse.json({ success: true, data })
|
|
}
|