import { HeaderLeftContentProps } from "../../types/home"; import Typography from "../typography/typography"; const HeaderLeft = ({ data }: HeaderLeftContentProps) => { return (
{data.title} {data.subtitle && ( {data.subtitle} )}
); }; export default HeaderLeft;