import Link from "next/link"; import { ShareBanner } from "./share-banner"; import { ShareBrandStrip } from "./share-brand-strip"; interface Props { expiresAt?: Date | null; capabilities: { read: boolean; write: boolean }; token: string; sharedByName?: string | null; children: React.ReactNode; } export function ShareFrame({ expiresAt, capabilities, token, sharedByName, children }: Props) { return (
{children}
); } function ShareFoot() { return (

This page is a snapshot. The original lives in the host's famapp household and may change — we'll reflect updates here until the link expires.

Hosted on famapp · self-hosted ·{" "} about famapp

); }