import Link from "next/link"; import { readMeta, listGroups } from "@/lib/store"; import { getSession } from "@/lib/session"; import BrowseClient from "./BrowseClient"; export default async function BrowsePage() { const [allRecords, groups, session] = await Promise.all([ readMeta(), listGroups(), getSession(), ]); 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 */}
); }