diff --git a/web/src/components/Seo/Seo.js b/web/src/components/Seo/Seo.js new file mode 100644 index 0000000..8445fda --- /dev/null +++ b/web/src/components/Seo/Seo.js @@ -0,0 +1,28 @@ +import React from 'react' +import { Helmet } from 'react-helmet' + +const Seo = ({ title, description, lang }) => { + return ( + <> + + + + + + + + + Cadhub - {title} + + + + ) +} + +export default Seo