Polish public Send pages

This commit is contained in:
shuaiplus
2026-05-04 04:19:17 +08:00
parent 75a6a593dc
commit 0ab7c44981
2 changed files with 55 additions and 3 deletions
@@ -3,6 +3,7 @@ import { APP_VERSION } from '@shared/app-version';
interface StandalonePageFrameProps {
title: string;
eyebrow?: ComponentChildren;
children: ComponentChildren;
}
@@ -17,6 +18,7 @@ export default function StandalonePageFrame(props: StandalonePageFrameProps) {
</div>
<div className="auth-card">
{props.eyebrow && <div className="standalone-eyebrow">{props.eyebrow}</div>}
<h1 className="standalone-title">{props.title}</h1>
{props.children}
</div>