22 lines
711 B
TypeScript
Raw Normal View History

2025-02-16 17:18:47 +01:00
import type { Metadata } from "next"
2025-03-04 20:42:38 +01:00
2025-02-16 17:18:47 +01:00
export const metadata: Metadata = {
title: "Show Version Information | ProxMenux Documentation",
2025-03-04 20:42:38 +01:00
description: "Displays ProxMenux version details and installed components.",
2025-02-16 17:18:47 +01:00
}
export default function ShowVersionInformation() {
return (
<div className="max-w-3xl mx-auto">
2025-03-04 20:42:38 +01:00
<h1 className="text-3xl font-bold mb-6">Show Version Information</h1>
2025-02-16 17:18:47 +01:00
<p className="mb-4">
2025-03-04 20:42:38 +01:00
The <strong>Show Version Information</strong> function provides details about the current ProxMenux installation, including
the version number, installed components, and configuration files. This helps users verify their setup.
2025-02-16 17:18:47 +01:00
</p>
2025-03-04 20:42:38 +01:00
2025-02-16 17:18:47 +01:00
</div>
)
}