ProxMenux/web/app/docs/hardware/coral-tpu-lxc.tsx
2025-02-16 16:49:04 +01:00

21 lines
621 B
TypeScript

import type { Metadata } from "next"
export const metadata: Metadata = {
title: "Coral TPU to an LXC | ProxMenux Documentation",
description: "Learn how to add a Coral TPU to an LXC container in Proxmox VE using ProxMenux.",
}
export default function CoralTPULXC() {
return (
<div className="max-w-3xl mx-auto">
<h1 className="text-3xl font-bold mb-6">Coral TPU to an LXC</h1>
<p className="mb-4">
This guide will walk you through the process of adding a Coral TPU to an LXC container in Proxmox VE using
ProxMenux.
</p>
{/* Add more content here */}
</div>
)
}