import { NextResponse } from 'next/server'; import { APK_TABS } from '@/lib/constants'; export async function GET() { return NextResponse.json({ tabs: APK_TABS, }); }