import { prisma } from "@repo/db"; import { ChangelogTimeline } from "./_components/Timeline"; import { ActivityLogIcon } from "@radix-ui/react-icons"; export default async function Page() { const changelog = await prisma.changelog.findMany({ where: { showOnChangelogPage: true }, orderBy: { createdAt: "desc" }, }); const entries = changelog.map((entry) => ({ ...entry, createdAt: entry.createdAt.toISOString(), })); return ( <>