import { Box, Container, Flex, Heading, Image, Link, Text } from '@chakra-ui/react'; import React from 'react'; type GuideHeaderProps = { title: string; subtitle: string; }; export function ContentPageHeader(props: GuideHeaderProps) { const { title, subtitle } = props; return ( Kamran Ahmed · Monday, May 4, 2021 · Improve this Guide {title} {subtitle} ); }