import { FunctionComponent } from 'preact'; export const Title: FunctionComponent = ({ children }) => ( <>

{children}

); export const Subtitle: FunctionComponent<{ className?: string }> = ({ children, className = '', }) => (

{children}

); export const SubtitleLight: FunctionComponent<{ className?: string }> = ({ children, className = '', }) => (

{children}

); export const Text: FunctionComponent<{ className?: string }> = ({ children, className = '', }) =>

{children}

; const buttonClasses = `block bg-default color-text rounded border-solid \ border-1 px-4 py-1.75 font-bold text-sm fit-content \ focus:bg-contrast hover:bg-contrast border-main`; export const LinkButton: FunctionComponent<{ label: string; link: string; className?: string; }> = ({ label, link, className }) => ( {label} );