+

diff --git a/src/components/IntroDefault.js b/src/components/IntroDefault.js
new file mode 100644
index 0000000..93a03cb
--- /dev/null
+++ b/src/components/IntroDefault.js
@@ -0,0 +1,17 @@
+import React from 'react'
+import Link from 'gatsby-link'
+
+import Button from './Button'
+
+const IntroDefault = ({ intro, headline, text }) => (
+
+
+
{intro}
+
{headline}
+
{text}
+
+
+
+)
+
+export default IntroDefault
diff --git a/src/components/MainIntro.js b/src/components/MainIntro.js
deleted file mode 100644
index 5ffd137..0000000
--- a/src/components/MainIntro.js
+++ /dev/null
@@ -1,18 +0,0 @@
-import React from 'react'
-import Link from 'gatsby-link'
-
-import ImgBuildSite from '../images/programming-company.svg'
-
-const MainIntro = () => (
-
-
-
Welcome To Saburly
-
We build the right software for your needs
-
We are a team of creative, open minded, skilled and passionate engineers that ship success every day.
-
Let's Get In Touch
-
-
-
-)
-
-export default MainIntro
diff --git a/src/pages/index.js b/src/pages/index.js
index 222cbb4..97b1ccf 100644
--- a/src/pages/index.js
+++ b/src/pages/index.js
@@ -1,10 +1,13 @@
import React from 'react'
-import MainIntro from '../components/MainIntro'
+import IntroDefault from '../components/IntroDefault'
+
+import ImgBuildSite from '../images/programming-company.svg'
const IndexPage = () => (
-
+
+
)