diff --git a/src/app/api/public/privacy/route.ts b/src/app/api/public/privacy/route.ts new file mode 100644 index 00000000..d9e110ed --- /dev/null +++ b/src/app/api/public/privacy/route.ts @@ -0,0 +1,5 @@ +import { NextResponse } from "next/server"; + +export async function GET() { + return NextResponse.json({ message: "Privacy policy endpoint" }); +} diff --git a/src/app/auth/layout.tsx b/src/app/auth/layout.tsx new file mode 100644 index 00000000..499818b2 --- /dev/null +++ b/src/app/auth/layout.tsx @@ -0,0 +1,19 @@ +import type { ReactNode } from "react"; + +export default function AuthLayout({ children }: { children: ReactNode }) { + return ( + <> +