import { Box, Container, Heading, Text } from '@chakra-ui/react'; type PageHeaderProps = { title: string; subtitle: string; }; export function PageHeader(props: PageHeaderProps) { const { title, subtitle } = props; return ( {title} {subtitle} ); }