About warpbox.dev
An open-source, self-hosted file transfer platform that pairs frictionless anonymous uploads with optional accounts, folders, and a proper admin console. Built in Go with a minimal vanilla frontend.
{f.title}
{f.body}
import { createFileRoute } from "@tanstack/react-router"; import { PublicHeader, Footer } from "@/components/layout/PublicHeader"; import { Card, CardContent } from "@/components/ui/card"; import { Shield, Zap, Server, Code2 } from "lucide-react"; export const Route = createFileRoute("/about")({ head: () => ({ meta: [{ title: "About — warpbox.dev" }] }), component: About, }); const features = [ { icon: Zap, title: "Fast", body: "Anonymous drop-and-share, no accounts needed. Resumable for large files." }, { icon: Shield, title: "Private", body: "Password-protected buckets, expiry, max-downloads, optional one-time links." }, { icon: Server, title: "Self-hosted", body: "Single Go binary or Docker. Local disk or S3-compatible storage." }, { icon: Code2, title: "Automatable", body: "First-class curl, CLI, REST API and ShareX support." }, ]; function About() { return (
An open-source, self-hosted file transfer platform that pairs frictionless anonymous uploads with optional accounts, folders, and a proper admin console. Built in Go with a minimal vanilla frontend.
{f.body}