2025-02-14 20:15:40 +01:00

30 lines
953 B
TypeScript

import fs from "fs"
import path from "path"
async function getChangelog() {
const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md")
try {
return fs.readFileSync(changelogPath, "utf8")
} catch (error) {
console.error("Error reading changelog file:", error)
return "<p>Changelog content not found.</p>"
}
}
export default async function ChangelogPage() {
const changelogContent = await getChangelog()
return (
<div className="min-h-screen bg-white">
<div className="container mx-auto px-4 py-16 max-w-4xl">
<h1 className="text-4xl font-bold mb-8 text-gray-900">Changelog</h1>
<div
className="prose prose-gray max-w-none prose-headings:text-gray-900 prose-p:text-gray-700 prose-a:text-blue-600 hover:prose-a:text-blue-800 prose-strong:text-gray-900 prose-ul:text-gray-700"
dangerouslySetInnerHTML={{ __html: changelogContent }}
/>
</div>
</div>
)
}