import classNames from "classnames"; interface Props { children: string, className?: string, } const PageTitle = ({ children, className }: Props) => { const styles = classNames( 'ml-4 text-2xl font-default uppercase w-full text-accent-blue font-bold', className, ) return