diff --git a/src/components/SEO.js b/src/components/SEO.js
new file mode 100644
index 0000000..fc3cbbf
--- /dev/null
+++ b/src/components/SEO.js
@@ -0,0 +1,18 @@
+import React, { Component } from 'react'
+import Helmet from 'react-helmet'
+import urljoin from 'url-join'
+import ImgIntro from '../images/web-development-company.svg'
+
+const SEO = ({ ...props }) => (
+
+
+ {props.siteTitle
+ ? props.siteTitle
+ : 'Saburly - Digital Agency that makes you stand out'}
+
+
+
+
+)
+
+export default SEO
diff --git a/src/layouts/index.js b/src/layouts/index.js
index fd0eea6..29a6dc4 100644
--- a/src/layouts/index.js
+++ b/src/layouts/index.js
@@ -18,14 +18,6 @@ import favicon32 from '../images/favicon32.png'
const Layout = ({ children, data }) => (