diff --git a/frontend-dapp/src/components/ui/PageShell.tsx b/frontend-dapp/src/components/ui/PageShell.tsx new file mode 100644 index 0000000..47727cd --- /dev/null +++ b/frontend-dapp/src/components/ui/PageShell.tsx @@ -0,0 +1,20 @@ +interface PageShellProps { + title: string + subtitle?: string + badge?: string + wide?: boolean + children: React.ReactNode +} + +export default function PageShell({ title, subtitle, badge, wide, children }: PageShellProps) { + return ( +
{subtitle}
} +