Refactor colors and palettes

This commit is contained in:
2025-06-28 16:41:01 +02:00
parent 2a2cde2f02
commit 50617e5578
34 changed files with 872 additions and 243 deletions

View File

@ -4,7 +4,12 @@ import { PlusCircleIcon } from "lucide-react";
import Link from "next/link";
export default async function GalleriesPage() {
const galleries = await prisma.gallery.findMany({ orderBy: { createdAt: "asc" } });
const galleries = await prisma.gallery.findMany({
orderBy: { createdAt: "asc" },
include: {
albums: { select: { id: true } }
}
});
return (
<div>