Skip to content
This repository has been archived by the owner on Oct 21, 2020. It is now read-only.

first version, photos still need editing #272

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/App/contents/work/Finbb/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import image from './FinBB17.jpg'
export default {
title: 'Increasing the number of consenting adults',
client: 'FinBB',
publishDate: 'June 11, 2020',
publishDate: 'August 11, 2020',
keywords: 'scrum, full-stack development',
category: 'healthcare',
image: image,
Expand Down
2 changes: 1 addition & 1 deletion src/App/contents/work/Honeypot/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import image from './HoneypotCult-Wunderdog1.jpg'
export default {
title: 'Giving content managers full ownership with Contentful',
client: 'Honeypot',
publishDate: 'July 9, 2020',
publishDate: 'June 9, 2020',
keywords: 'scrum',
category: 'consumers, media',
image: image,
Expand Down
99 changes: 99 additions & 0 deletions src/App/contents/work/Smartum/content.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
import React, { Fragment } from 'react'

import Image from 'App/components/Image'
import ImageRow from 'App/components/ImageRow'
import Chapter from 'App/components/Chapter'
import Stats from 'App/components/Stats'
import Indent from 'App/components/Indent'
import BlockQuote from 'App/components/BlockQuote'
import photo1 from './smartum-sports.jpg'
import photo2 from './smartum-restaurants.jpg'
import {AnteroTorhonen} from '../../contactSalesFaces'
import CallToAction from "../../../components/CallToAction"
import {CaseContactInfo} from "../../callToActions"

export default () => (
<Fragment>
<Chapter>
<h2>Our solution</h2>
<p>
We created a minimum viable product (MVP) web application and supporting
back-end for employers to manage employee benefits.
</p>
<p>
The new system is post-paid, which has the advantage that employees can
be enrolled at any time and employers benefit from a simple monthly
invoice that shows exactly what has been spent. Employees have a single
balance that can be used for any benefit, taking into account any
applicable taxation rules. Employees will also be able to see where
they’ve used their benefits, how much they’ve used, and the remaining
balance.
</p>
</Chapter>

<Indent twice><Stats>
<div>
<span>10/10</span>
<span>this was the first project for Smartum that was on schedule,
thanks to our developers</span>
</div>
</Stats></Indent>

<Chapter>
<BlockQuote by="Project Manager at Smartum">
I’m so glad to see how talented and professional you all are! We’re
expecting great things going forward – and as you said in our retro, it
shows the fantastic collaboration you guys have with the developers.
</BlockQuote>
</Chapter>

<Image src={ photo1 } alt="Smartum Wunderdog" />

<Chapter>
<h2>The bright idea</h2>
<p>
What if managing employee benefits could be made simpler – for both
employers and employees?
</p>
<p>
Smartum already had an employee benefit system, but it was not
particularly flexible – all benefits had to be pre-paid and they were
organized into separate benefit-specific balances. The goal was to create
an MVP that would enable pilot customers to manage benefits more
efficiently in a post-paid system.
</p>
</Chapter>

<Chapter>
<h2>So how did it go?</h2>
<p>
The project was finished on schedule even though MVP testing was slightly
delayed due to a few integration problems with existing systems. We got
very good feedback from Smartum about our performance, and they liked our
presentation and general attitude in the pre-project activities.
</p>
<p>
Even though we didn't have any Go experience, we succeeded in learning
the language from Smartum’s own Go developer and using it effectively.
We also developed how this kind of onboarding could happen in future,
improving knowledge transfer for other projects.
</p>
<p>
We really enjoyed working with Smartum – it was so much fun, the general
atmosphere was nice, and the people were friendly. During the project we
hung out together during lunch and in some after-work activities, as well
as having a couple of days working in the Wuffice together. This created
a good atmosphere among everyone involved.
</p>
</Chapter>

<Image src={ photo2 } alt="Smartum Wunderdog" />


<CallToAction color="blue" large grid>
<CaseContactInfo slogan="Let's talk.">
<AnteroTorhonen />
</CaseContactInfo>
</CallToAction>
</Fragment>
)
13 changes: 13 additions & 0 deletions src/App/contents/work/Smartum/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import importedComponent from 'react-imported-component'
import image from './smartum-wunderdog.jpg'

export default {
title: 'Adding more benefits to employee benefits',
client: 'Smartum',
publishDate: 'August 12, 2020',
keywords: 'scrum, full-stack development',
category: 'consumers',
image: image,

content: importedComponent(() => import('./content')),
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/App/contents/work/Smartum/smartum-sports.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/App/contents/work/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ import sanomapro from './SanomaPro'
export const SanomaPro = sanomapro
import smartly from './Smartly'
export const Smartly = smartly
import smartum from './Smartum'
export const Smartum = smartum
import someturva from './Someturva'
export const Someturva = someturva
import tridify from './Tridify'
Expand Down