import type { ReactNode } from 'react' import { Link, NavLink } from 'react-router-dom' import type { AcAppKey } from '../lib/acAssets' import { AcIcon } from './AcIcon' const fieldClass = 'ac-field w-full px-4 py-3 text-base text-ink outline-none transition placeholder:text-subtle focus:border-brand focus:ring-4 focus:ring-brand-soft' 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, hint, children, }: { label: string hint?: string children: ReactNode }) { return ( ) } export function Input(props: React.InputHTMLAttributes) { return } export function Textarea( props: React.TextareaHTMLAttributes & { mono?: boolean }, ) { const { mono, className, ...rest } = props return (