diff --git a/app/web/src/components/Seo/Seo.tsx b/app/web/src/components/Seo/Seo.tsx
index 35f7096..7b22c51 100644
--- a/app/web/src/components/Seo/Seo.tsx
+++ b/app/web/src/components/Seo/Seo.tsx
@@ -22,25 +22,33 @@ const Seo = ({
title={title}
titleTemplate={`Cadhub - ${title}`}
>
-
{title || 'cadhub'}
-
+ {title && {title || 'cadhub'}}
+ {description && }
{/* Facebook Meta Tags */}
{browser && }
-
-
-
+ {title && }
+ {description && (
+
+ )}
+ {socialImageUrl && (
+
+ )}
{/* Twitter Meta Tags */}
{browser && }
-
-
-
+ {title && }
+ {description && (
+
+ )}
+ {socialImageUrl && (
+
+ )}
-
+ {lang && }
>
)