import type { ReactNode } from 'react' import { Link } from 'react-router-dom' import type { AcAppKey } from '../lib/acAssets' import { AcIcon } from './AcIcon' export function PageTitle({ title, subtitle }: { title: string; subtitle?: string }) { return (
{title}
{subtitle ? (

{subtitle}

) : null}
) } export function Card({ children, className = '' }: { children: ReactNode; className?: string }) { return (
{children}
) } export function Field({ label, children, }: { label: string children: ReactNode }) { return ( ) } export function Input(props: React.InputHTMLAttributes) { return ( ) } export function Textarea(props: React.TextareaHTMLAttributes) { return (