import cx from 'classnames' type Props = { title?: React.ReactNode sectionLink?: string children?: React.ReactNode className?: string } export const LandingSection = ({ title, children, className, sectionLink }: Props) => { return (
{title && (

{sectionLink ? {title} : title}

)} {children}
) }