2018-06-30 13:28:19 +02:00
|
|
|
import React from 'react'
|
|
|
|
|
import Link from 'gatsby-link'
|
|
|
|
|
import SaburlyLogo from "../images/Saburly-Logo.svg"
|
|
|
|
|
|
2018-06-30 13:59:46 +02:00
|
|
|
import "./Header.css"
|
|
|
|
|
|
2018-06-30 13:28:19 +02:00
|
|
|
const Header = () => (
|
|
|
|
|
<header>
|
|
|
|
|
<nav className="flex items-center justify-between flex-wrap lg:p-6">
|
2018-06-30 14:56:04 +02:00
|
|
|
<div className="flex items-center flex-no-shrink text-white mr-6">
|
2018-06-30 13:28:19 +02:00
|
|
|
<Link to="/">
|
|
|
|
|
<img src={SaburlyLogo} alt='Saburly Logo' style={{ maxWidth: '300px' }} />
|
|
|
|
|
</Link>
|
|
|
|
|
</div>
|
|
|
|
|
|
2018-06-30 13:59:46 +02:00
|
|
|
<button className="menu_icon block">
|
|
|
|
|
<span className="menu_bar-top" />
|
|
|
|
|
<span className="menu_bar-mid" />
|
|
|
|
|
<span className="menu_bar-bot" />
|
|
|
|
|
</button>
|
|
|
|
|
|
2018-06-30 13:28:19 +02:00
|
|
|
<div className="hidden lg:visible w-full block flex-grow lg:flex lg:items-center lg:w-auto">
|
|
|
|
|
<ul className="flex text-sm justify-center lg:flex-grow">
|
|
|
|
|
<Link to="/services">
|
|
|
|
|
<li className="no-underline block mt-4 lg:inline-block lg:mt-0 text-grey-darkest hover:text-teal uppercase mr-4">What We Do
|
|
|
|
|
</li>
|
|
|
|
|
</Link>
|
|
|
|
|
<Link to="/about">
|
|
|
|
|
<li className="no-underline block mt-4 lg:inline-block lg:mt-0 text-grey-darkest hover:text-teal uppercase mr-4">TEAM
|
|
|
|
|
</li>
|
|
|
|
|
</Link>
|
|
|
|
|
<Link to="/blog">
|
|
|
|
|
<li className="no-underline block mt-4 lg:inline-block lg:mt-0 text-grey-darkest hover:text-teal uppercase mr-4">BLOG
|
|
|
|
|
</li>
|
|
|
|
|
</Link>
|
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
|
|
<Link to="/contact" className="no-underline inline-block text-sm px-4 py-2 leading-none border rounded text-grey-darkest border-teal-darkest hover:border-teal hover:text-white hover:bg-teal mt-4 lg:mt-0 uppercase mr-3 rounded-full">Contact</Link>
|
|
|
|
|
|
|
|
|
|
<Link to="/proposal" className="no-underline inline-block text-sm px-4 py-2 leading-none border rounded text-grey-lightest border-grey-darkest hover:border-transparent hover:text-white hover:bg-white mt-4 lg:mt-0 uppercase bg-grey-darkest hover:bg-teal rounded-full ">Get a free proposal</Link>
|
|
|
|
|
</div>
|
|
|
|
|
</nav>
|
|
|
|
|
</header>
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export default Header
|