51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
|
const m = require('mithril')
|
||
|
|
||
|
const Front = {
|
||
|
view: function() {
|
||
|
return [
|
||
|
m('header', m('h1', 'NFP ehf.')),
|
||
|
m('main', [
|
||
|
m('section',
|
||
|
m('p', `
|
||
|
Software development, video production,
|
||
|
live streaming, software operations
|
||
|
or whatever your needs may be, NFP ehf.
|
||
|
has the resource and technical knowledge
|
||
|
to approach any and all needs.
|
||
|
`)
|
||
|
),
|
||
|
m('aside',
|
||
|
m('span', 'Contact us'),
|
||
|
m('h3', 'nfp@nfp.is')
|
||
|
),
|
||
|
m('section', [
|
||
|
m('h5', 'Sample of our clients'),
|
||
|
m('div.clients', [
|
||
|
m('a.client.stjornarrad', {
|
||
|
href: 'https://www.stjornarradid.is/',
|
||
|
target: '_blank',
|
||
|
}, 'Stjórnarráðið'),
|
||
|
m('a.client.aranja', {
|
||
|
href: 'https://aranja.com/',
|
||
|
target: '_blank',
|
||
|
}, 'Aranja'),
|
||
|
m('a.client.jokula', {
|
||
|
href: 'http://jokula.is/',
|
||
|
target: '_blank',
|
||
|
}, 'Jokula'),
|
||
|
m('a.client.filadelfia', {
|
||
|
href: 'http://filadelfia.is/',
|
||
|
target: '_blank',
|
||
|
}, 'Filadelfia'),
|
||
|
]),
|
||
|
]),
|
||
|
m('footer',
|
||
|
m('span', m.trust('Copyright © 2018 NFP ehf.'))
|
||
|
),
|
||
|
]),
|
||
|
]
|
||
|
},
|
||
|
}
|
||
|
|
||
|
module.exports = Front
|