2018-06-27 13:22:17 +02:00
|
|
|
import React from 'react'
|
|
|
|
|
import Link from 'gatsby-link'
|
2018-07-05 07:14:42 +02:00
|
|
|
import Button from './Button'
|
|
|
|
|
|
|
|
|
|
import LogoSaburly from '../images/logo-saburly-colorful.svg'
|
|
|
|
|
|
|
|
|
|
let menuClasses =
|
2018-07-05 11:15:44 +02:00
|
|
|
'no-underline mt-4 lg:inline-block opacity-100 lg:mt-0 text-white hover:opacity-100 uppercase mr-4'
|
2018-06-27 13:22:17 +02:00
|
|
|
|
|
|
|
|
const Footer = () => (
|
2018-07-05 07:14:42 +02:00
|
|
|
<footer className="bg-indigo-darker">
|
2018-07-05 11:15:44 +02:00
|
|
|
<div className="container mx-auto pt-10 pb-10 lg:flex">
|
|
|
|
|
<div className="lg:w-1/4 p-4">
|
|
|
|
|
<img src={LogoSaburly} alt="Saburly Logo" className="max-w-full" />
|
|
|
|
|
<a href="mailto:info@saburly.com">E: info@saburly.com</a>
|
|
|
|
|
<a href="tel:+46760477717">P: +46760477717</a>
|
|
|
|
|
</div>
|
2018-07-05 07:14:42 +02:00
|
|
|
|
2018-07-05 11:15:44 +02:00
|
|
|
<div className="lg:w-3/4 ml-10 p-4">
|
|
|
|
|
<div className="lg:flex items-center justify-between">
|
|
|
|
|
<h3 className="text-white font-light">
|
|
|
|
|
Let's start a new project together
|
|
|
|
|
</h3>
|
|
|
|
|
<Button
|
|
|
|
|
text="Contact Us"
|
|
|
|
|
standard
|
|
|
|
|
classes="rounded-full text-white hover:shadow"
|
|
|
|
|
url="/contact"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="mt-4 lg:flex justify-between">
|
|
|
|
|
<nav>
|
|
|
|
|
<p className="font-thin text-white opacity-70">Sitemap</p>
|
|
|
|
|
<ul className="list-reset text-sm inline-block">
|
|
|
|
|
<Link className="block my-2" to="/">
|
|
|
|
|
<li className={menuClasses}>Home</li>
|
|
|
|
|
</Link>
|
|
|
|
|
<Link className="block my-2" to="/services">
|
|
|
|
|
<li className={menuClasses}>What We Do</li>
|
|
|
|
|
</Link>
|
|
|
|
|
<Link className="block my-2" to="/about">
|
|
|
|
|
<li className={menuClasses}>TEAM</li>
|
|
|
|
|
</Link>
|
|
|
|
|
<Link className="block my-2" to="/blog">
|
|
|
|
|
<li className={menuClasses}>BLOG</li>
|
|
|
|
|
</Link>
|
|
|
|
|
</ul>
|
|
|
|
|
</nav>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="font-thin text-white opacity-70">Office - Sweden</p>
|
|
|
|
|
<p className="text-white my-2 leading-normal">
|
|
|
|
|
Saburly AB<br />Vretenvägen 13<br />171 54 Solna<br />Sweden
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<p className="font-thin text-white opacity-70">Office - Bosnia</p>
|
|
|
|
|
<p className="text-white my-2 leading-normal">
|
|
|
|
|
Saburly d.o.o<br />Hakije Turajlica 2<br />71 000 Sarajevo<br />Bosnia
|
|
|
|
|
& Herzegovina
|
|
|
|
|
</p>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2018-06-27 13:22:17 +02:00
|
|
|
</footer>
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
export default Footer
|