This commit is contained in:
MacRimi
2025-02-16 17:00:56 +01:00
parent ae11dc6f44
commit dee0767f95
6 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Install Coral TPU on the Host | ProxMenux Documentation",
description: "Learn how to install a Coral TPU on the Proxmox VE host using ProxMenux.",
}
export default function InstallCoralTPUHost() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">Install Coral TPU on the Host</h1>
<p className="mb-4">
This guide will walk you through the process of installing a Coral TPU on your Proxmox VE host using ProxMenux.
</p>
{/* Add more content here */}
</div>
)
}