diff --git a/CHANGELOG.md b/CHANGELOG.md
index e6ee280..3782409 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,34 +1,42 @@
-# Changelog / Raiz
+
Changelog / Raiz
-All notable changes to ProxMenux will be documented in this file.
+All notable changes to ProxMenux will be documented in this file.
-The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
-and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
-## [Unreleased]
+[Unreleased]
-### Added
-- Initial project setup
-- Basic menu structure
-- Documentation framework
+Added
+
+ - Initial project setup
+ - Basic menu structure
+ - Documentation framework
+
-## [0.1.0] - 2023-06-15
+[0.1.0] - 2023-06-15
-### Added
-- Core functionality for executing shell scripts
-- Menu-driven interface for script selection
-- Basic error handling and logging
+Added
+
+ - Core functionality for executing shell scripts
+ - Menu-driven interface for script selection
+ - Basic error handling and logging
+
-### Changed
-- Improved script organization with categories
+Changed
+
+ - Improved script organization with categories
+
-### Fixed
-- Issue with script permissions on certain systems
+Fixed
+
+ - Issue with script permissions on certain systems
+
-## [0.0.1] - 2023-06-01
-
-### Added
-- Project initialization
-- README with basic project description
-- License file
+[0.0.1] - 2023-06-01
+Added
+
+ - Project initialization
+ - README with basic project description
+ - License file
+
diff --git a/web/app/changelog/page.tsx b/web/app/changelog/page.tsx
index dd03508..e64be2b 100644
--- a/web/app/changelog/page.tsx
+++ b/web/app/changelog/page.tsx
@@ -1,17 +1,11 @@
import fs from "fs"
import path from "path"
-import { remark } from "remark"
-import html from "remark-html"
async function getChangelog() {
const changelogPath = path.join(process.cwd(), "..", "CHANGELOG.md")
try {
const fileContents = fs.readFileSync(changelogPath, "utf8")
-
- // Convertir Markdown a HTML
- const result = await remark().use(html).process(fileContents)
-
- return result.toString()
+ return fileContents // Ahora el archivo ya es HTML, no necesita conversión
} catch (error) {
console.error("Error reading changelog file:", error)
return "Changelog content not found.
"
@@ -27,7 +21,7 @@ export default async function ChangelogPage() {
Changelog