import { Text } from '@nextui-org/react' /** * Types */ interface Props { children: string } /** * Component */ export default function PageHeader({ children }: Props) { return ( {children} ) }