mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 20:26:53 +00:00
32 lines
1000 B
TypeScript
32 lines
1000 B
TypeScript
import fs from "fs"
|
|
import path from "path"
|
|
import ReactMarkdown from "react-markdown"
|
|
|
|
async function getChangelog() {
|
|
const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md")
|
|
try {
|
|
const fileContents = fs.readFileSync(changelogPath, "utf8")
|
|
|
|
// Asegurar que los saltos de línea dobles se respeten
|
|
return fileContents.replace(/\r?\n/g, " \n")
|
|
} catch (error) {
|
|
console.error("Error reading changelog file:", error)
|
|
return "Changelog content not found."
|
|
}
|
|
}
|
|
|
|
export default async function ChangelogPage() {
|
|
const changelogContent = await getChangelog()
|
|
|
|
return (
|
|
<div className="bg-white text-gray-900 min-h-screen">
|
|
<div className="container mx-auto px-4 py-16 max-w-4xl">
|
|
<h1 className="text-4xl font-bold mb-8">Changelog</h1>
|
|
<div className="prose prose-lg max-w-none bg-gray-100 p-4 border border-gray-300 rounded-md">
|
|
<ReactMarkdown>{changelogContent}</ReactMarkdown>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|