mirror of
https://github.com/MacRimi/ProxMenux.git
synced 2025-06-28 20:26:53 +00:00
22 lines
711 B
TypeScript
22 lines
711 B
TypeScript
import type { Metadata } from "next"
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Show Version Information | ProxMenux Documentation",
|
|
description: "Displays ProxMenux version details and installed components.",
|
|
}
|
|
|
|
export default function ShowVersionInformation() {
|
|
return (
|
|
<div className="max-w-3xl mx-auto">
|
|
<h1 className="text-3xl font-bold mb-6">Show Version Information</h1>
|
|
|
|
<p className="mb-4">
|
|
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.
|
|
</p>
|
|
|
|
</div>
|
|
)
|
|
}
|