udpate for coming soon

This commit is contained in:
diyaa
2026-03-13 03:45:13 +01:00
parent 243a182d33
commit cdf83cd466
32 changed files with 907 additions and 143 deletions
+16
View File
@@ -0,0 +1,16 @@
import { NextResponse } from "next/server";
export function GET() {
return NextResponse.json(
{
status: "ok",
timestamp: new Date().toISOString(),
},
{
status: 200,
headers: {
"Cache-Control": "no-store",
},
},
);
}