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

28 lines
1001 B
JavaScript
Raw Normal View History

2018-07-01 11:56:57 +02:00
import React from 'react'
import Link from 'gatsby-link'
import ImgSprint from '../images/wow-we-did-design-sprint-remotely.png'
const Card = ({ ...props }) => (
2018-07-05 15:09:12 +02:00
<div className="my-4 lg:my-2 lg:mx-2 w-full rounded overflow-hidden shadow-md hover:shadow-lg">
2018-07-01 11:56:57 +02:00
<img className="w-full" src={ImgSprint} alt="Sprint Work" />
<div className="px-6 py-4">
<div className="font-bold text-xl mb-2">
How we do remote design sprints
2018-07-01 11:56:57 +02:00
</div>
<p className="text-grey-darker text-base">
Its amazing how design can impact business and people making the world
a better and a friendlier place. Knowing the how important design today
is, heres a complete rundown of our design process in its fully glory.
2018-07-01 11:56:57 +02:00
</p>
</div>
<div className="px-6 py-4">
<span className="inline-block bg-grey-lighter rounded-full px-3 py-1 text-sm font-semibold text-grey-darker">
#workstyle
</span>
2018-07-01 11:56:57 +02:00
</div>
</div>
)
export default Card