--- import { localizePath, useTranslations, DOCS_URL, type Locale } from "../i18n/ui"; interface Props { locale: Locale; } const { locale } = Astro.props; const t = useTranslations(locale); const p = (sub: string) => localizePath(locale, sub); const local = [ { name: " ..", size: "DIR", kind: "dir" }, { name: " Documents/", size: "DIR", kind: "dir" }, { name: " backup.tar.gz", size: "1.2 GB", kind: "file" }, { name: " id_ed25519", size: "411 B", kind: "file" }, { name: " notes.md", size: "8.4 KB", kind: "file" }, ]; const remote = [ { name: " ..", size: "DIR", kind: "dir" }, { name: " html/", size: "DIR", kind: "sel" }, { name: " .env", size: "220 B", kind: "file" }, { name: " docker-compose.yml", size: "1.7 KB", kind: "file" }, { name: " logs/", size: "DIR", kind: "dir" }, ]; ---

{t("hero.kicker")}

{t("hero.tabs", { host: "192.168.1.10" })}
{t("hero.local")}
{local.map((r) => (
{r.name}{r.size}
))}
{t("hero.remote")}
{remote.map((r) => (
{r.name} {r.size}
))}
$1')}> 4 files · 1.2 GB

{t("hero.title")}

{t("hero.subtitle")}