import { NextResponse } from 'next/server'; export async function GET() { // Mock data - in real integration this would fetch from n8n webhook or database return NextResponse.json({ activity: { type: 'coding', // coding, listening, watching details: 'Portfolio Website', timestamp: new Date().toISOString(), }, music: { isPlaying: true, track: 'Midnight City', artist: 'M83', platform: 'spotify' }, watching: null }); }