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

{sectionLink ? ( {title} ) : ( title )}

)} {description && (
)} {children}
) }