feat: add video demo to digital-humans page, add force-dynamic to pages with prisma queries, update seed data

This commit is contained in:
root
2026-05-12 00:29:37 +08:00
parent d4105fc04d
commit ed6907d87e
8 changed files with 78 additions and 19 deletions
+2
View File
@@ -1,6 +1,8 @@
import { prisma } from "@//app/lib/prisma"
import Link from "next/link"
export const dynamic = "force-dynamic"
export default async function NewsPage() {
const news = await prisma.news.findMany({
where: { published: true },