2018-06-27 16:36:45 +02:00
import React from 'react'
2018-08-23 01:25:02 +02:00
import SectionIntro from '../components/SectionIntro'
2018-07-07 01:04:02 +02:00
import PageIntro from '../components/PageIntro'
2018-09-02 09:08:24 +02:00
import Fade from 'react-reveal/Fade'
2018-07-07 01:04:02 +02:00
2018-08-30 14:18:59 +02:00
import ContactImage from '../images/saburly-web-agency.jpg'
2018-08-23 01:25:02 +02:00
import Sarajevo from '../images/sarajevo-web-agency.jpg'
import Stockholm from '../images/stockholm-web-agency.jpg'
2018-08-30 22:30:00 +02:00
import FormImage from '../images/best-web-development-sweden.svg'
2018-08-23 01:25:02 +02:00
2018-08-30 11:07:16 +02:00
import PageTransition from 'gatsby-plugin-page-transitions'
2018-06-30 15:04:24 +02:00
const ContactPage = ( ) => (
2018-08-30 11:07:16 +02:00
< PageTransition >
2018-09-01 14:14:37 +02:00
< Fade top >
< PageIntro
tiltImage
2018-09-05 09:30:55 +02:00
headline = "Let's connect"
2018-09-01 14:14:37 +02:00
text = "We are always on a lookout for exciting challenges. Feel free to contact us if you want to start something great or just find out more about what we do."
sectionClasses = "lg:mb-8"
image = { ContactImage }
2018-09-05 09:30:55 +02:00
imgClasses = "-mb-12 border-white rounded-lg opacity-70 hover:opacity-100 saburly-transition"
2018-09-01 14:14:37 +02:00
/ >
< / F a d e >
2018-08-01 19:10:21 +02:00
2018-08-01 22:33:10 +02:00
< section className = "container mx-auto my-12 p-4" >
2018-08-23 01:25:02 +02:00
< div className = "md:flex" >
2018-09-01 14:14:37 +02:00
< Fade left >
< div className = "p-2 text-center" >
< div className = "rounded overflow-hidden border-bottom-saburly" >
< img className = "w-full" src = { Stockholm } alt = "Stockholm City" / >
< div className = "px-6 py-4" >
< div className = "uppercase font-medium text-xl mb-6" >
office in Stockholm
2018-08-23 01:25:02 +02:00
< / d i v >
2018-09-01 14:14:37 +02:00
< div className = "md:flex text-left justify-around text-black text-base" >
< div >
< h4 className = "text-black" > Adress < / h 4 >
< p className = "text-black-light" >
Saburly AB < br / >
Vretenvägen 13 < br / >
171 54 Solna < br / >
Sweden < br / >
< / p >
< / d i v >
< div >
< h4 className = "text-black" > Contact < / h 4 >
< p className = "text-black-light" >
Phone : { ' ' }
< a
2018-09-05 00:59:50 +02:00
className = "saburly-color hover:text-purple-light no-underline"
2018-09-01 14:14:37 +02:00
href = "tel:+46760477717"
>
+ 46760477717
< / a >
< br / >
E - mail : { ' ' }
< a
2018-09-05 00:59:50 +02:00
className = "saburly-color hover:text-purple-light no-underline"
2018-09-01 14:14:37 +02:00
href = "mailto:sweden@saburly.com"
>
sweden @ saburly . com
< / a > { ' ' }
< / p >
< / d i v >
2018-08-23 01:25:02 +02:00
< / d i v >
2018-08-23 14:18:31 +02:00
< / d i v >
2018-08-23 01:25:02 +02:00
< / d i v >
2018-08-01 22:33:10 +02:00
< / d i v >
2018-09-01 14:14:37 +02:00
< / F a d e >
< Fade right >
< div className = "p-2 text-center" >
< div className = "rounded overflow-hidden border-bottom-saburly" >
< img className = "w-full" src = { Sarajevo } alt = "Sarajevo City" / >
< div className = "px-6 py-4" >
< div className = "uppercase font-medium text-xl mb-6" >
office in Sarajevo
2018-08-23 01:25:02 +02:00
< / d i v >
2018-09-01 14:14:37 +02:00
< div className = "md:flex text-left justify-around text-base" >
< div >
< h4 className = "text-black" > Adress < / h 4 >
< p className = "text-black-light" >
Saburly d . o . o < br / >
Hakije Turajlica 2 < br / >
71 000 Sarajevo < br / >
Bosnia & Herzegovina < br / >
< / p >
< / d i v >
< div >
< h4 className = "text-black" > Contact < / h 4 >
< p className = "text-black-light" >
Phone : { ' ' }
< a
2018-09-05 00:59:50 +02:00
className = "saburly-color hover:text-purple-light no-underline"
2018-09-01 14:14:37 +02:00
href = "tel:+38761909238"
>
+ 38761909238
< / a > { ' ' }
< br / >
E - mail : { ' ' }
< a
2018-09-05 00:59:50 +02:00
className = "saburly-color hover:text-purple-light no-underline"
2018-09-01 14:14:37 +02:00
href = "mailto:bosnia@saburly.com"
>
bosnia @ saburly . com
< / a > { ' ' }
< / p >
< / d i v >
2018-08-23 01:25:02 +02:00
< / d i v >
2018-08-23 14:18:31 +02:00
< / d i v >
2018-08-23 01:25:02 +02:00
< / d i v >
2018-08-01 22:33:10 +02:00
< / d i v >
2018-09-01 14:14:37 +02:00
< / F a d e >
2018-08-23 01:25:02 +02:00
< / d i v >
< / s e c t i o n >
2018-08-01 19:10:21 +02:00
2018-08-30 22:30:00 +02:00
< div className = "bg-saburly-lighter p-8" >
2018-09-01 14:14:37 +02:00
< Fade >
< section className = "container lg:flex justify-between mx-auto" >
< form
action = "https://formspree.io/info@saburly.com"
className = "w-full max-w-sm mx-auto pt-16 p-6"
method = "POST"
>
< SectionIntro headline = "Send us a message" / >
< div className = "md:flex flex-wrap" >
< input
className = "appearance-none bg-transparent border-contact block w-full typed-cursor py-2"
id = "grid-first-name"
type = "text"
placeholder = "Name"
name = "name"
required
/ >
2018-08-23 01:25:02 +02:00
2018-09-01 14:14:37 +02:00
< input
className = "appearance-none bg-transparent border-contact block w-full typed-cursor py-2"
id = "grid-first-name"
type = "text"
placeholder = "Email"
name = "_replyto"
required
/ >
2018-08-23 01:25:02 +02:00
2018-09-01 14:14:37 +02:00
< textarea
className = "appearance-none bg-transparent border-contact block w-full typed-cursor py-2 border-grey-light"
id = "grid-last-name"
type = "text"
name = "message"
placeholder = "Message"
required
/ >
< / d i v >
< button
className = "mt-4 w-full shadow bg-teal hover:bg-teal-light text-white py-2 px-4 rounded"
value = "Send"
type = "submit"
>
Send
< / b u t t o n >
< / f o r m >
< div >
< img
src = { FormImage }
alt = "Contact Form Image"
className = "p-10 w-full text-center block md:max-w-lg mx-auto"
2018-08-30 16:42:18 +02:00
/ >
< / d i v >
2018-09-01 14:14:37 +02:00
< / s e c t i o n >
< / F a d e >
2018-08-30 16:42:18 +02:00
< / d i v >
2018-08-30 11:07:16 +02:00
< / P a g e T r a n s i t i o n >
2018-06-27 16:36:45 +02:00
)
2018-06-30 15:04:24 +02:00
export default ContactPage