import { Helmet } from 'react-helmet' const Seo = ({ title, description, lang, socialImageUrl}: { title: string; description: string; lang: string; socialImageUrl?: string}) => { return ( <> Cadhub - {title} ) } export default Seo