import Link from "next/link"; import { readMeta, listGroups } from "@/lib/store"; import BrowseClient from "./BrowseClient"; export default async function BrowsePage() { const [allRecords, groups] = await Promise.all([readMeta(), listGroups()]); return (
{/* Header */}

Community

Browse shared files

Docker configs and backups shared by the community. Find, inspect, and restore in seconds.

+ Share a file
{/* Client section: search + filter + cards */}
); }