Files
old-v2-frontend/src/components/Footer.js

139 lines
4.9 KiB
JavaScript
Raw Normal View History

import React from 'react'
import Link from 'gatsby-link'
import Button from './Button'
import LogoSaburly from '../images/Saburly-logo.svg'
2018-07-05 12:59:28 +02:00
import Facebook from '../images/facebook.svg'
import Instagram from '../images/instagram.svg'
import Twitter from '../images/twitter.svg'
import LinkedIn from '../images/linkedin.svg'
let menuClasses =
2018-07-10 11:47:58 +02:00
'no-underline mt-4 lg:inline-block lg:mt-0 text-white hover:opacity-100 uppercase mr-4'
const Footer = () => (
<footer className="saburly-main-bg">
2018-08-06 00:12:09 +02:00
<div className="text-center py-4 lg:px-4">
<Link className="no-underline text-white" to="/contact">
<div
className="p-2 items-center text-indigo-lightest leading-none lg:rounded-full flex lg:inline-flex"
role="alert"
>
<span className="flex rounded-full bg-indigo uppercase px-2 py-1 text-xs font-bold mr-3">
Let's Connect
</span>
<span className="font-normal mr-2 text-left flex-auto">
2018-08-06 00:12:09 +02:00
Tell us about your project and get a free proposal
</span>
<svg
className="fill-current opacity-75 h-4 w-4"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 20 20"
>
<path d="M12.95 10.707l.707-.707L8 4.343 6.586 5.757 10.828 10l-4.242 4.243L8 15.657l4.95-4.95z" />
</svg>
</div>
</Link>
</div>
<div className="container mx-auto lg:flex">
<div className="lg:w-1/4 p-4">
2018-07-10 11:47:58 +02:00
<img
src={LogoSaburly}
alt="Saburly Logo"
className="w-full opacity-80"
/>
2018-07-05 12:59:28 +02:00
<div className="flex justify-between social-icons py-2">
<div>
2018-07-05 15:09:12 +02:00
<a href="https://facebook.com/saburly" target="_blank">
<img
src={Facebook}
alt="Facebook Social Media"
2018-07-10 11:47:58 +02:00
className="max-w-2.5 opacity-80 hover:opacity-100 w-full"
2018-07-05 15:09:12 +02:00
/>
</a>
2018-07-05 12:59:28 +02:00
</div>
<div>
2018-07-05 15:09:12 +02:00
<a href="https://instagram.com/saburly" target="_blank">
<img
src={Instagram}
alt="Instagram Social Media"
2018-07-10 11:47:58 +02:00
className="max-w-2.5 opacity-80 hover:opacity-100 w-full"
2018-07-05 15:09:12 +02:00
/>
</a>
2018-07-05 12:59:28 +02:00
</div>
<div>
2018-07-05 15:09:12 +02:00
<a href="https://twitter.com/saburly" target="_blank">
<img
src={Twitter}
alt="Twitter Social Media"
2018-07-10 11:47:58 +02:00
className="max-w-2.5 opacity-80 hover:opacity-100 w-full"
2018-07-05 15:09:12 +02:00
/>
</a>
2018-07-05 12:59:28 +02:00
</div>
<div>
2018-07-05 15:09:12 +02:00
<a href="https://www.linkedin.com/company/saburly/" target="_blank">
<img
src={LinkedIn}
alt="LinkedIn Social Media"
2018-07-10 11:47:58 +02:00
className="max-w-2.5 opacity-80 hover:opacity-100 w-full"
2018-07-05 15:09:12 +02:00
/>
</a>
2018-07-05 12:59:28 +02:00
</div>
</div>
2018-07-05 13:32:53 +02:00
<div>
<a
className="text-center lg:text-left opacity-70 hover:opacity-100 py-4 lg:py-1 text-xl lg:text-sm no-underline text-white block"
href="mailto:info@saburly.com"
>
E-mail: info@saburly.com
</a>
<a
className="text-center text-xl lg:text-sm lg:text-left opacity-70 hover:opacity-100 no-underline text-white block"
href="tel:+46760477717"
>
Phone: +46760477717
</a>
</div>
</div>
<div className="lg:w-3/4">
2018-07-05 17:28:49 +02:00
<div className="p-4 text-center lg:text-left sm:flex justify-around">
<nav>
2018-07-05 12:59:28 +02:00
<p className="font-thin text-white opacity-50">Sitemap</p>
<ul className="list-reset text-sm inline-block">
2018-07-05 14:43:17 +02:00
<Link className="block my-2 hover:opacity-70" to="/">
<li className={menuClasses}>Home</li>
</Link>
2018-07-05 14:43:17 +02:00
<Link className="block my-2 hover:opacity-70" to="/services">
<li className={menuClasses}>What We Do</li>
</Link>
2018-07-05 14:43:17 +02:00
<Link className="block my-2 hover:opacity-70" to="/about">
<li className={menuClasses}>TEAM</li>
</Link>
2018-07-05 14:43:17 +02:00
<Link className="block my-2 hover:opacity-70" to="/blog">
<li className={menuClasses}>BLOG</li>
</Link>
</ul>
</nav>
<div>
2018-07-05 12:59:28 +02:00
<p className="font-thin text-white opacity-50">Office - Sweden</p>
<p className="text-white my-2 opacity-80 leading-normal">
Saburly AB<br />Vretenvägen 13<br />171 54 Solna<br />Sweden
</p>
</div>
<div>
2018-07-05 12:59:28 +02:00
<p className="font-thin text-white opacity-50">Office - Bosnia</p>
<p className="text-white my-2 opacity-80 leading-normal">
Saburly d.o.o<br />Hakije Turajlica 2<br />71 000 Sarajevo<br />Bosnia
& Herzegovina
</p>
</div>
</div>
</div>
</div>
</footer>
)
export default Footer