import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";

export function proxy(request: NextRequest) {
    // For now, just pass through - we'll handle auth in the page components
    return NextResponse.next();
}

export const config = {
    matcher: ["/admin/dashboard/:path*"],
};

export default proxy;
