This commit is contained in:
Harivansh Rathi 2026-04-02 03:24:41 +00:00
parent caa2e40dc1
commit 79f52cac9a
2 changed files with 18 additions and 20 deletions

View file

@ -62,10 +62,24 @@ export default function DocsPage() {
Sign in
</Link>
</div>
<div className="flex flex-col gap-2">
<div className="flex flex-col gap-3">
<h1 className="text-2xl font-semibold tracking-tight">
Getting started
betterNAS
</h1>
<p className="text-sm leading-relaxed text-muted-foreground">
Mount VMs and remote filesystems on your Mac as native Finder
volumes. No special client, no syncing - just your files, where
you expect them.
</p>
<p className="text-sm leading-relaxed text-muted-foreground">
Soon: a unified layer across your phone, computer, and AI agents.
A safe, modular backup of your filesystem that you can use
natively - and a way to deploy agents on your own infrastructure
without giving up control.
</p>
<h2 className="mt-4 text-lg font-semibold tracking-tight">
Getting started
</h2>
<p className="text-sm leading-relaxed text-muted-foreground">
One account works everywhere: the web app, the node agent, and
Finder. Set up the node, confirm it is online, then mount your

View file

@ -11,27 +11,11 @@ const README_LINES = [
{ tag: "h1", text: "betterNAS" },
{
tag: "p",
text: "betterNAS is a hosted control plane with a user-run node agent.",
text: "Mount VMs and remote filesystems on your Mac as native Finder volumes. No special client, no syncing - just your files, where you expect them.",
},
{
tag: "p",
text: "The control plane owns user auth, node enrollment, heartbeats, export state, and mount issuance.",
},
{
tag: "p",
text: "The node agent runs on the machine that owns the files and serves them over WebDAV.",
},
{
tag: "p",
text: "The web app reads from the control plane and shows nodes, exports, and mount details.",
},
{
tag: "p",
text: "Finder mounts the export from the node's public WebDAV URL using the same betterNAS username and password.",
},
{
tag: "p",
text: "File traffic goes directly between the client and the node, not through the control plane.",
text: "Soon: a unified layer across your phone, computer, and AI agents. A safe, modular backup of your filesystem that you can use natively - and a way to deploy agents on your own infrastructure without giving up control.",
},
] as const;