diff --git a/src/components/Header.js b/src/components/Header.js
index 0a82d83..e611f47 100644
--- a/src/components/Header.js
+++ b/src/components/Header.js
@@ -1,6 +1,6 @@
import React, { Component } from 'react'
import Link, { withPrefix } from 'gatsby-link'
-import LogoSaburly from '../images/logo-saburly-colorful.svg'
+import LogoSaburly from '../images/saburly-logo-purple.svg'
import Button from './Button'
import './Header.css'
diff --git a/src/components/PageIntro.js b/src/components/PageIntro.js
index 3fa7883..7ee846b 100644
--- a/src/components/PageIntro.js
+++ b/src/components/PageIntro.js
@@ -26,7 +26,7 @@ const PageIntro = ({ ...props }) => (
{props.image && (
)}
diff --git a/src/components/Service.js b/src/components/Service.js
index 553bd26..2a7059c 100644
--- a/src/components/Service.js
+++ b/src/components/Service.js
@@ -13,7 +13,7 @@ const Service = ({ ...props }) => (
alt={`${props.title} agency`}
/>
diff --git a/src/images/saburly-logo-purple.svg b/src/images/saburly-logo-purple.svg
new file mode 100644
index 0000000..c1f05af
--- /dev/null
+++ b/src/images/saburly-logo-purple.svg
@@ -0,0 +1,34 @@
+
+
\ No newline at end of file
diff --git a/src/images/serviecs-background.svg b/src/images/services-background.svg
similarity index 100%
rename from src/images/serviecs-background.svg
rename to src/images/services-background.svg
diff --git a/src/pages/contact.js b/src/pages/contact.js
index d788ddd..b48886d 100644
--- a/src/pages/contact.js
+++ b/src/pages/contact.js
@@ -1,56 +1,82 @@
import React from 'react'
import PageIntro from '../components/PageIntro'
-import SectionIntro from '../components/SectionIntro'
const ContactPage = () => (
-
-
-
-
- Request a Proposal
- Request a Video Call
- Old-fashioned phone calls work as well: - +...
-
+
-
+
(
standard
text="More About What We Do"
url="/services"
- classes="m-1 rounded-full hover:shadow-md text-grey-darker hover:shadow"
+ classes="mb-8 lg:mb-24 rounded-full hover:shadow-md text-grey-darker hover:shadow"
/>
+
+
@@ -97,8 +107,8 @@ const IndexPage = ({ ...props }) => (
diff --git a/src/styles/general.css b/src/styles/general.css
index be8cd0f..d437f78 100644
--- a/src/styles/general.css
+++ b/src/styles/general.css
@@ -18,25 +18,47 @@ body {
}
.bg-saburly-light {
- background: #faf9fc;
+ background: linear-gradient(
+ 90deg,
+ rgba(255, 255, 255, 1) 1%,
+ rgba(250, 249, 252, 1) 49%,
+ rgba(237, 233, 245, 1) 100%
+ );
+}
+
+.bg-saburly-fadeout {
+ background: rgb(255, 255, 255);
+ background: linear-gradient(
+ 180deg,
+ rgba(255, 255, 255, 1) 0%,
+ rgba(237, 233, 245, 1) 100%
+ );
+}
+
+.bg-saburly svg {
+ -moz-transform: scaleX(-1);
+ -o-transform: scaleX(-1);
+ -webkit-transform: scaleX(-1);
+ transform: scaleX(-1);
+ filter: FlipH;
+ -ms-filter: 'FlipH';
}
.bg-saburly-dark {
background-color: #210b44;
}
+.bg-saburly svg,
.bg-saburly-light svg,
.bg-saburly-indigo svg {
position: absolute;
bottom: 0;
- margin-bottom: -1px;
}
.bg-saburly-indigolight svg {
position: absolute;
top: 0;
transform: rotate(180deg);
- margin-top: -1px;
}
.bg-saburly-indigolight {