first commit

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
orohi
2026-06-06 14:59:02 +03:00
commit 8bb436ea4f
26 changed files with 1075 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
import { NextResponse } from "next/server";
import { prisma } from "@/lib/prisma";
export async function GET() {
try {
const photos = await prisma.photo.findMany({
orderBy: { createdAt: "desc" },
take: 50,
});
return NextResponse.json(photos);
} catch (error) {
console.error("Photos fetch error:", error);
return NextResponse.json([], { status: 200 });
}
}