24 lines
735 B
Plaintext
24 lines
735 B
Plaintext
---
|
|
import Base from '../layouts/Base.astro'
|
|
import Nav from '../components/Nav.astro'
|
|
import Hero from '../components/Hero.astro'
|
|
import FeatureBlocks from '../components/FeatureBlocks.astro'
|
|
import ArchitectureStrip from '../components/ArchitectureStrip.astro'
|
|
import DownloadCta from '../components/DownloadCta.astro'
|
|
import Footer from '../components/Footer.astro'
|
|
---
|
|
|
|
<Base
|
|
title="Clustri — Ops Console for Proxmox VE"
|
|
description="Clustri is a cross-platform desktop client for managing Proxmox VE servers and clusters. Failover, security, VMs, storage, backups, and consoles in one app."
|
|
>
|
|
<Nav />
|
|
<main>
|
|
<Hero />
|
|
<FeatureBlocks />
|
|
<ArchitectureStrip />
|
|
<DownloadCta />
|
|
</main>
|
|
<Footer />
|
|
</Base>
|