import type { Metadata } from "next"; import { ChangelogList } from "@/components/shared/changelog-list"; import { APP_VERSION } from "@/lib/changelog"; export const metadata: Metadata = {}; export default function ChangelogPage() { return (

Changelog

Currently running v{APP_VERSION}.

); }