Initial version

master
Jonatan Nilsson 2018-07-16 05:31:21 +00:00
parent 19c70b31c7
commit 54b47e0953
47 changed files with 5439 additions and 0 deletions

44
.circleci/config.yml Normal file
View File

@ -0,0 +1,44 @@
version: 2
jobs:
build:
docker:
- image: docker:latest
environment:
- di: "nfpis/nfpis"
- dtag: "latest"
- service_name: "nfpis"
- target_port: "3000" # The target port on the docker software
- service_port: "7021" # The exposed public port
working_directory: ~/nfpis
steps:
- run:
name: Update and install SSH & Git
command: apk update && apk upgrade && apk add --no-cache bash git openssh
- checkout
- setup_remote_docker
- run:
name: Build docker image
command: docker build -t ${di}:build_${CIRCLE_BUILD_NUM} -t ${di}:${CIRCLE_SHA1} -t ${di}:${dtag} .
- run:
name: Push to docker
command: |
docker login -u $DOCKER_USER -p $DOCKER_PASS
docker push ${di}
- deploy:
name: Deploy to production
command: |
if [ "${CIRCLE_BRANCH}" != "master" ]; then
echo Not running on master. Exiting.
exit 0
fi
echo "$MASTER_HOST" | base64 -d > ~/.ssh/master_host
echo "$MASTER_KEY" | base64 -d > ~/.ssh/master_key
chmod 600 ~/.ssh/master_key
ssh -p 51120 -i ~/.ssh/master_key -o "UserKnownHostsFile ~/.ssh/master_host" root@82.221.107.21 "docker ${service_name} ${di}:${dtag} ${target_port} ${service_port}"
workflows:
version: 2
build_deploy:
jobs:
- build:
context: org-global

1
.dockerignore Normal file
View File

@ -0,0 +1 @@
node_modules

3
.eslintignore Normal file
View File

@ -0,0 +1,3 @@
.circleci
node_modules
public

84
.eslintrc Normal file
View File

@ -0,0 +1,84 @@
{
"parserOptions": {
"ecmaVersion": 9,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"extends": "eslint:recommended",
"env": {
"mocha": true,
"node": true,
"es6": true
},
"rules": {
"require-await": 0,
"array-callback-return": 2,
"block-scoped-var": 2,
"complexity": ["error", 20],
"eqeqeq": [2, "smart"],
"no-else-return": ["error", { "allowElseIf": false }],
"no-extra-bind": 2,
"no-implicit-coercion": 2,
"no-invalid-this": 2,
"no-loop-func": 2,
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-new": 2,
"no-param-reassign": [2, {"props": false}],
"no-return-assign": 2,
"no-return-await": 2,
"no-self-compare": 2,
"no-sequences": 2,
"no-throw-literal": 2,
"no-unmodified-loop-condition": 2,
"no-useless-call": 2,
"no-useless-concat": 2,
"no-useless-return": 2,
"no-void": 2,
"no-warning-comments": 2,
"prefer-promise-reject-errors": 2,
"no-catch-shadow": 2,
"no-shadow": 2,
"no-undef-init": 2,
"no-undefined": 2,
"no-use-before-define": 2,
"no-new-require": 2,
"no-sync": 2,
"array-bracket-newline": [2, "consistent"],
"block-spacing": [2, "always"],
"brace-style": [2, "1tbs"],
"comma-dangle": [2, "always-multiline"],
"comma-spacing": 2,
"comma-style": 2,
"computed-property-spacing": 2,
"eol-last": 2,
"func-call-spacing": 2,
"key-spacing": 2,
"keyword-spacing": 2,
"semi": [2, "never"],
"max-len": [1, 120],
"prefer-const": 0,
"consistent-return": 0,
"no-unused-vars": [
2,
{
"args": "after-used",
"argsIgnorePattern": "next|res|req"
}
],
"generator-star-spacing": 0,
"global-require": 0,
"import/prefer-default-export": 0,
"no-underscore-dangle": 0,
"strict": 0,
"require-yield": 0
},
globals: {
"window": true,
"document": true
}
}

4
.gitignore vendored
View File

@ -59,3 +59,7 @@ typings/
# next.js build output
.next
public/main.css
public/main.css.map
public/main.js

41
Dockerfile Normal file
View File

@ -0,0 +1,41 @@
###########################
# Website
###########################
FROM node:alpine as build
ENV HOME=/app
COPY package.json $HOME/
WORKDIR $HOME
RUN apk add --no-cache make gcc g++ python && \
npm install && \
apk del make gcc g++ python
COPY app $HOME/app
COPY public $HOME/public
RUN npm run build
###########################
# Server
###########################
FROM node:alpine
ENV HOME=/app \
NODE_ENV=production
COPY config.json package.json $HOME/
WORKDIR $HOME
RUN apk add --no-cache make gcc g++ python && \
npm install --production && \
apk del make gcc g++ python
COPY --from=build /app/public $HOME/public
EXPOSE 3000
CMD ["npm", "start"]

8
LICENSE Normal file
View File

@ -0,0 +1,8 @@
Copyright (c) 2015 Jonatan Nilsson
This program is free software. It comes without any warranty, to
the extent permitted by applicable law. You can redistribute it
and/or modify it under the terms of the Do What The Fuck You Want
To Public License, Version 2, as published by Sam Hocevar. See
http://www.wtfpl.net/ for more details.

50
app/front/index.js Normal file
View File

@ -0,0 +1,50 @@
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

18
app/main.js Normal file
View File

@ -0,0 +1,18 @@
/**
* @license
* NFP ehf. <https://nfp.is>
* Copyright 2018 Jonatan Nilsson <http://jonatan.nilsson.is/>
*
* Available under WTFPL License (http://www.wtfpl.net/txt/copying/)
*/
'use strict'
//Add debug components to window. Allows us to play with controls
//in the console.
window.components = {}
const m = require('mithril')
const Front = require('./front')
m.mount(document.getElementById('container'), Front)

59
app/styl/fonts.styl Normal file
View File

@ -0,0 +1,59 @@
/* https://fonts.google.com/
License: Apache 2.0
*/
/*@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url('./assets/fonts/Roboto-Light.ttf') format('truetype');
}
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 300;
src: local('Roboto Light'), local('Roboto-Light'), url('./assets/fonts/Roboto-LightItalic.ttf') format('truetype');
}*/
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
src: local('Roboto Regular'), local('Roboto-Regular'), url('./assets/fonts/Roboto-Regular.ttf') format('truetype');
}
/*@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 400;
src: local('Roboto Italic'), local('Roboto-Italic'), url('./assets/fonts/Roboto-ItalicItalic.ttf') format('truetype');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'), url('./assets/fonts/Roboto-Bold.ttf') format('truetype');
}
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 700;
src: local('Roboto Bold'), local('Roboto-Bold'), url('./assets/fonts/Roboto-BoldItalic.ttf') format('truetype');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 900;
src: local('Roboto Black'), local('Roboto-Black'), url('./assets/fonts/Roboto-Black.ttf') format('truetype');
}
@font-face {
font-family: 'Roboto';
font-style: italic;
font-weight: 900;
src: local('Roboto Black'), local('Roboto-Black'), url('./assets/fonts/Roboto-BlackItalic.ttf') format('truetype');
}*/

165
app/styl/main.styl Normal file
View File

@ -0,0 +1,165 @@
@require 'reset'
@require 'fonts'
body {
background: #eee;
color: black;
min-height: 100vh;
display: flex;
flex-direction: column;
font-family: 'Roboto', sans-serif;
}
#container {
flex-grow: 2;
display: flex;
flex-direction: column;
}
header {
margin-top: 4em;
display: flex;
flex-direction: column;
align-items: stretch;
max-height: 600px;
padding: 0 2em;
h1 {
flex-grow: 2;
text-indent: -9999px;
padding-top: 96%;
background: url('./assets/logo.png') center no-repeat transparent;
background-size: contain;
max-width: 400px;
}
}
@media only screen and (max-width: 464px) {
header {
margin-top: 13.8%;
}
}
@media only screen and (min-width: 464px) {
header h1 {
align-self: center;
width: 400px;
height: 400px;
padding-top: 0;
}
}
main {
display: flex;
flex-direction: column;
margin-top: 3em;
flex-grow: 2;
}
section,
aside {
display: flex;
flex-direction: column;
& > * {
max-width: 600px;
align-self: center;
text-align: center;
}
}
section {
padding: 0.5em 1em 3em;
p {
font-size: 1.5em;
line-height: 1.2em;
}
h5 {
margin-top: 1em;
}
}
aside {
border-top: 1px solid #333;
border-bottom: 1px solid #333;
background: #ddd;
padding: 1em 1em 0.6em;
margin: 2em 0 4em;
span {
font-size: 0.9em;
}
h3 {
font-size: 1.8em;
line-height: 2em;
}
}
.clients {
display: flex;
flex-wrap: wrap;
justify-content: center;
margin-top: 1em;
.client {
margin: 0 0.6em;
padding: 1em 0;
background-color: transparent;
background-position: center;
background-repeat: no-repeat;
background-size: contain;
height: 35px;
text-indent: -9999px;
&.stjornarrad {
background-image: url('./assets/stjornarradid.svg');
width: 64px;
}
&.aranja {
background-image: url('./assets/aranja.svg');
background-position: center 28px;
width: 100px;
}
&.jokula {
background-image: url('./assets/jokula.png');
background-position: center 24px;
width: 120px;
}
&.filadelfia {
background-image: url('./assets/filadelfia.png');
width: 67px;
}
}
}
footer {
flex-grow: 2;
display: flex;
align-items: flex-end;
span {
flex-grow: 2;
text-align: center;
font-size: 0.8em;
color: #999;
line-height: 3em;
}
}
@media only screen and (max-width: 640px) {
section p {
font-size: 1.3em;
}
}
@media only screen and (max-width: 500px) {
section p {
font-size: 1.1em;
}
}

64
app/styl/reset.styl Normal file
View File

@ -0,0 +1,64 @@
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
input {
font-size: 16px;
-webkit-appearance: none;
border-radius: 0;
}
button {
outline: none;
border: none;
cursor: pointer;
}
a {
text-decoration: none;
}

11
config.json Normal file
View File

@ -0,0 +1,11 @@
{
"name": "nfpis",
"production": {
"port": 3000,
"use_bunyan": true
},
"development": {
"port": 3000,
"use_bunyan": false
}
}

3955
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

40
package.json Normal file
View File

@ -0,0 +1,40 @@
{
"name": "nfpis",
"version": "1.0.0",
"description": "Website for nfp ehf.",
"main": "index.js",
"scripts": {
"build": "npm run build:styl && npm run build:js",
"build:js": "browserify app/main.js -o public/main.js --debug",
"build:styl": "stylus -m app/styl/main.styl --out public",
"dev": "run-p watch:js watch:styl start",
"dev:run": "npm install && npm run dev",
"docker": "docker run -it --rm --name nfpis -p 3000:3000 -v \"$PWD\":/usr/src/app -w /usr/src/app node:slim",
"docker:dev": "npm run docker -- npm run dev:run",
"start": "spserver -f ./public/index.html -s ./public -p 3000",
"test": "echo \"Error: no test specified\" && exit 1",
"watch:js": "watchify app/main.js -o public/main.js --debug",
"watch:styl": "stylus -w -m app/styl/main.styl --out public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nfp-projects/nfpis.git"
},
"author": "Jonatan Nilsson",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/nfp-projects/nfpis/issues"
},
"homepage": "https://github.com/nfp-projects/nfpis#readme",
"devDependencies": {
"browserify": "^16.2.2",
"eslint": "^5.1.0",
"mithril": "^1.1.6",
"npm-run-all": "^4.1.3",
"stylus": "^0.54.5",
"watchify": "^3.11.0"
},
"dependencies": {
"spserver": "^0.2.0"
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
public/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

3
public/assets/aranja.svg Normal file
View File

@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 524.9 117.7" fill="#3c435f"><path d="M90.7 44.4C90.2 19.8 70.1.1 45.4.1 20.3.1 0 20.4 0 45.5s20.3 45.4 45.4 45.4c6.7 0 13-1.4 18.7-4V65.8c-4.9 4.5-11.5 7.3-18.7 7.3-15.2 0-27.6-12.4-27.6-27.6s12.4-27.6 27.6-27.6c14.8 0 27 11.8 27.6 26.5v46.5h17.8l-.1-46.5z"></path><path d="M108.6 44.4v46.5h17.8V45.5c0-15.2 12.4-27.6 27.6-27.6V.1c-24.8 0-44.8 19.7-45.4 44.3"></path><path d="M253.6 44.4C253 19.8 232.9.1 208.2.1c-25.1 0-45.4 20.3-45.4 45.4s20.3 45.4 45.4 45.4c6.7 0 13-1.4 18.7-4V65.8c-4.9 4.5-11.5 7.3-18.7 7.3-15.2 0-27.6-12.4-27.6-27.6s12.4-27.6 27.6-27.6c14.8 0 27 11.8 27.6 26.5v46.5h17.8V44.4z"></path><path d="M316.7 0c-24.7 0-44.8 19.7-45.4 44.3v46.5h17.8V45.4c0-15.2 12.4-27.6 27.6-27.6 15.2 0 27.6 12.4 27.6 27.6v45.4h17.8V45.4c0-25.1-20.3-45.4-45.4-45.4"></path><path d="M407 0h-26.7v17.9h18.2v45.5c0 20.1-16.4 36.5-36.4 36.5h-17.8v17.8h17.8c29.9 0 54.3-24.4 54.3-54.3V0H407z"></path><path d="M524.9 44.3C524.3 19.7 504.2 0 479.5 0c-25.1 0-45.4 20.3-45.4 45.4s20.3 45.4 45.4 45.4c6.7 0 13-1.4 18.7-4V65.7c-4.9 4.5-11.5 7.3-18.7 7.3-15.2 0-27.6-12.4-27.6-27.6 0-15.2 12.4-27.6 27.6-27.6 14.8 0 27 11.8 27.6 26.5v46.5h17.8V44.3z"></path></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

202
public/assets/fonts/LICENSE.txt Executable file
View File

@ -0,0 +1,202 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
public/assets/jokula.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

BIN
public/assets/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 146 KiB

120
public/assets/logo.svg Normal file
View File

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 1642.52 2091.6001"
height="2091.6001"
width="1642.52"
xml:space="preserve"
id="svg2"
version="1.1"><metadata
id="metadata8"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs6" /><g
transform="matrix(1.3333333,0,0,-1.3333333,0,2091.6)"
id="g10"><g
transform="scale(0.1)"
id="g12"><path
id="path14"
style="fill:#fadc43;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 11151.2,12729.6 c -287.6,974.9 -935.2,1845.3 -1885.03,2393.7 -974.85,562.8 -2084.64,680.3 -3093.8,415.8 886.5,-243.9 1691.94,-783.8 2255.2,-1576.4 1066.2,-55 2024.63,-516.8 2723.63,-1233.1" /><path
id="path16"
style="fill:#f8cc0a;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3877.12,13961.8 c 75.92,4.1 152.18,6.5 229.17,6.5 748.01,0 1449.11,-200.1 2053.14,-549.5 603.89,349.4 1305.22,549.5 2053.17,549.5 72.1,0 143.86,-1.9 214.97,-5.6 -563.26,792.6 -1368.7,1332.5 -2255.2,1576.4 -901.1,-236.1 -1722.04,-776.8 -2295.25,-1577.3" /><path
id="path18"
style="fill:#f9b00c;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 6159.43,13418.8 c -604.03,349.4 -1305.13,549.5 -2053.14,549.5 -76.99,0 -153.25,-2.4 -229.17,-6.5 -78.16,-109.1 -151.84,-223 -220.29,-341.6 -373.96,-647.8 -551.25,-1355 -550.67,-2052.8 510.47,294.2 1078.46,475 1662.6,531.4 352.66,541.9 829.65,995.4 1390.67,1320" /><path
id="path20"
style="fill:#d29413;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4251.75,10947.8 c 112.97,413.3 288.93,800.6 517.01,1151 -584.14,-56.4 -1152.13,-237.2 -1662.6,-531.4 0.5,-584 125.82,-1161.4 364.92,-1691.63 197.68,392.33 459.33,755.43 780.67,1072.03" /><path
id="path22"
style="fill:#ae7b19;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4251.75,10947.8 c -321.34,-316.6 -582.99,-679.7 -780.67,-1072.03 194.28,-431.06 463.8,-830.72 802.81,-1177.66 -108.83,368.98 -167.6,759.52 -167.6,1163.73 0,376.06 50.79,740.06 145.46,1085.96" /><path
id="path24"
style="fill:#ee2834;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 3700.33,5775.69 C 2720.42,5871.82 1841.71,6312.27 1186.69,6974.81 1454.24,5949.08 2116.14,5026.6 3106.74,4454.7 4073.06,3896.8 5171.9,3776.6 6174.03,4032 5188.14,4269.9 4291.52,4870.4 3700.33,5775.69" /><path
id="path26"
style="fill:#d9252e;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 8603.61,5774.2 c -128.62,-11.93 -259.09,-18.58 -391.01,-18.58 -747.95,0 -1449.12,200.08 -2053.17,549.51 C 5555.4,5955.7 4854.3,5755.62 4106.29,5755.62 c -137.01,0 -272.44,6.97 -405.96,20.07 C 4291.52,4870.4 5188.14,4269.9 6174.03,4032 c 969.71,247.4 1848.92,846.6 2429.58,1742.2" /><path
id="path28"
style="fill:#c42129;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 6159.43,6305.13 c 604.05,-349.43 1305.22,-549.51 2053.17,-549.51 131.92,0 262.39,6.65 391.01,18.58 38.8,60 76.26,121.19 112.4,183.66 373.95,647.64 551.32,1354.95 550.67,2052.82 C 8709.05,7689.26 8082.79,7503.44 7441.95,7466.98 7102.29,6994.89 6665.03,6597.55 6159.43,6305.13" /><path
id="path30"
style="fill:#b11e25;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 8060.59,8750.98 c -131.14,-466.78 -342.65,-900.27 -618.64,-1284 640.84,36.46 1267.1,222.28 1824.73,543.7 -0.51,647.98 -154.83,1287.99 -447.72,1864.26 -186.32,-409.34 -440.94,-790.11 -758.37,-1123.96" /><path
id="path32"
style="fill:#9f1b21;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 8080.63,10898.3 c 86.21,-331.1 131.97,-678.4 131.97,-1036.46 0,-384.98 -53.07,-757.44 -152.01,-1110.86 317.43,333.85 572.05,714.62 758.37,1123.96 -189.49,372.76 -436.8,718.76 -738.33,1023.36" /><path
id="path34"
style="fill:#fadc43;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3877.12,13961.8 c 573.21,800.5 1394.15,1341.2 2295.25,1577.3 -1022.09,281.2 -2151.78,169.2 -3142.37,-402.7 -966.34,-558 -1619.86,-1449.5 -1899.65,-2445.1 699.02,734.9 1667.32,1211.1 2746.77,1270.5" /><path
id="path36"
style="fill:#f8cc0a;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1424.24,9716.06 c 53.88,117.52 113.54,233.72 179.43,348.04 374.06,647.7 897.95,1154.9 1502.49,1503.3 -0.58,697.8 176.71,1405 550.67,2052.8 68.45,118.6 142.13,232.5 220.29,341.6 -1079.45,-59.4 -2047.75,-535.6 -2746.77,-1270.5 -270.877,-963.5 -191.463,-2024.4 293.89,-2975.24" /><path
id="path38"
style="fill:#f9b00c;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3471.08,9875.77 c -239.1,530.23 -364.42,1107.63 -364.92,1691.63 -604.54,-348.4 -1128.43,-855.6 -1502.49,-1503.3 -65.89,-114.32 -125.55,-230.52 -179.43,-348.04 32.57,-63.49 66.71,-126.47 102.76,-188.97 373.98,-647.81 897.87,-1155.04 1502.49,-1503.3 0.51,643.48 152.59,1278.85 441.59,1851.98" /><path
id="path40"
style="fill:#d29413;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 4867.97,7479.25 c -261.32,366.15 -463.72,777.1 -594.08,1218.86 -339.01,346.94 -608.53,746.6 -802.81,1177.66 -289,-573.13 -441.08,-1208.5 -441.59,-1851.98 561.53,-323.59 1192.83,-509.92 1838.48,-544.54" /><path
id="path42"
style="fill:#ae7b19;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 5159.88,8010.85 c -333.52,192.45 -629.58,424.85 -885.99,687.26 130.36,-441.76 332.76,-852.71 594.08,-1218.86 417.48,-22.23 840.85,19.04 1255.32,127.62 -329.69,91.17 -653.43,225.11 -963.41,403.98" /><path
id="path44"
style="fill:#c91840;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 8603.61,5774.2 C 8022.95,4878.6 7143.74,4279.4 6174.03,4032 7161.98,3793.7 8239.77,3919.6 9189.42,4467.8 10164.3,5030.7 10820.9,5932.99 11096.5,6939.17 10442.1,6293.36 9571.84,5865.87 8603.61,5774.2" /><path
id="path46"
style="fill:#a7193a;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 10878.2,9715.55 c -34.3,-67.79 -70.6,-135.08 -109,-201.56 -374,-647.8 -897.82,-1155.03 -1502.52,-1503.31 0.65,-697.87 -176.72,-1405.18 -550.67,-2052.82 -36.14,-62.47 -73.6,-123.66 -112.4,-183.66 968.23,91.67 1838.49,519.16 2492.89,1164.97 246,898.45 188.3,1879.78 -218.3,2776.38" /><path
id="path48"
style="fill:#881933;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 9190.1,11580.5 c -0.5,-589.2 -127.81,-1171.5 -371.14,-1705.56 292.89,-576.27 447.21,-1216.28 447.72,-1864.26 604.7,348.28 1128.52,855.51 1502.52,1503.31 38.4,66.48 74.7,133.77 109,201.56 -55.5,122.27 -117.3,242.93 -185.6,361.65 -374.2,647.7 -897.97,1154.9 -1502.5,1503.3" /><path
id="path50"
style="fill:#6b172c;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 7542.56,12110.2 c 240.86,-367.3 424.53,-775.5 538.07,-1211.9 301.53,-304.6 548.84,-650.6 738.33,-1023.36 243.33,534.06 370.64,1116.36 371.14,1705.56 -506.1,291.6 -1068.69,471.7 -1647.54,529.7" /><path
id="path52"
style="fill:#511423;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 7213.02,11567.1 c 325.42,-188 615.49,-413.9 867.61,-668.8 -113.54,436.4 -297.21,844.6 -538.07,1211.9 -470.26,47.3 -951.31,13.7 -1421.25,-106.3 373.95,-90.3 741.62,-234.7 1091.71,-436.8" /><path
id="path54"
style="fill:#5ac5eb;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 11151.2,12729.6 c 287.1,-972.7 215.2,-2049.5 -273,-3014.05 406.6,-896.6 464.3,-1877.93 218.3,-2776.38 754.6,744.63 1222.4,1778.99 1222.4,2922.67 0,1115.96 -445.3,2127.66 -1167.7,2867.76" /><path
id="path56"
style="fill:#4da4dd;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 8427.57,13962.7 c 74.94,-105.4 145.89,-215.1 211.84,-329.4 373.81,-647.8 551.18,-1355 550.69,-2052.8 604.53,-348.4 1128.3,-855.6 1502.5,-1503.3 68.3,-118.72 130.1,-239.38 185.6,-361.65 488.2,964.55 560.1,2041.35 273,3014.05 -699,716.3 -1657.43,1178.1 -2723.63,1233.1" /><path
id="path58"
style="fill:#4286ce;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 9190.1,11580.5 c 0.49,697.8 -176.88,1405 -550.69,2052.8 -65.95,114.3 -136.9,224 -211.84,329.4 -71.11,3.7 -142.87,5.6 -214.97,5.6 -747.95,0 -1449.28,-200.1 -2053.17,-549.5 557.14,-322.2 1031.23,-771.7 1383.13,-1308.6 578.85,-58 1141.44,-238.1 1647.54,-529.7" /><path
id="path60"
style="fill:#3c5a98;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 6121.31,12003.9 c 469.94,120 950.99,153.6 1421.25,106.3 -351.9,536.9 -825.99,986.4 -1383.13,1308.6 -561.02,-324.6 -1038.01,-778.1 -1390.67,-1320 447.65,43.2 904.74,13.1 1352.55,-94.9" /><path
id="path62"
style="fill:#37366d;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 6121.31,12003.9 c -447.81,108 -904.9,138.1 -1352.55,94.9 -228.08,-350.4 -404.04,-737.7 -517.01,-1151 243.68,240 521.41,453.4 831.39,632.4 333.43,192.5 682.61,332.8 1038.17,423.7" /><path
id="path64"
style="fill:#fadc43;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 1424.24,9716.06 C 938.887,10666.9 859.473,11727.8 1130.35,12691.3 429.902,11954.8 0,10958.5 0,9861.84 0,8736.23 453.035,7716.62 1186.69,6974.81 954.535,7864.47 1019.44,8831.88 1424.24,9716.06" /><path
id="path66"
style="fill:#f8cc0a;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3700.33,5775.69 c -41.52,63.49 -81.72,128.63 -120.18,195.27 -373.96,647.64 -551.32,1354.96 -550.66,2052.83 -604.62,348.26 -1128.51,855.49 -1502.49,1503.3 -36.05,62.5 -70.19,125.48 -102.76,188.97 C 1019.44,8831.88 954.535,7864.47 1186.69,6974.81 1841.71,6312.27 2720.42,5871.82 3700.33,5775.69" /><path
id="path68"
style="fill:#f9b00c;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 3029.49,8023.79 c -0.66,-697.87 176.7,-1405.19 550.66,-2052.83 38.46,-66.64 78.66,-131.78 120.18,-195.27 133.52,-13.1 268.95,-20.07 405.96,-20.07 748.01,0 1449.11,200.08 2053.14,549.51 -510.05,295.08 -950.65,696.54 -1291.46,1174.12 -645.65,34.62 -1276.95,220.95 -1838.48,544.54" /><path
id="path70"
style="fill:#d29413;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 6123.29,7606.87 c -414.47,-108.58 -837.84,-149.85 -1255.32,-127.62 340.81,-477.58 781.41,-879.04 1291.46,-1174.12 505.6,292.42 942.86,689.76 1282.52,1161.85 -438.44,-24.89 -883.86,20.06 -1318.66,139.89" /><path
id="path72"
style="fill:#ae7b19;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 6123.29,7606.87 c 434.8,-119.83 880.22,-164.78 1318.66,-139.89 275.99,383.73 487.5,817.22 618.64,1284 -265.23,-278.65 -574.22,-524.8 -924.32,-726.88 -325.55,-187.97 -666.04,-326.06 -1012.98,-417.23" /><path
id="path74"
style="fill:#511423;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 1924.09,2470.7 h 501.19 L 3582.96,949.5 v 1521.2 h 536.48 V 0 H 3657.08 L 2460.58,1570.6 V 0 h -536.49 v 2470.7" /><path
id="path76"
style="fill:#511423;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 5418.25,2470.7 h 1881.2 V 1976.6 H 5961.79 v -526 H 7140.63 V 956.5 H 5961.79 V 0 h -543.54 v 2470.7" /><path
id="path78"
style="fill:#511423;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 9413.58,1224.8 c 271.77,0 430.6,162.3 430.6,374.1 v 7 c 0,243.6 -169.42,374.2 -441.19,374.2 h -420.01 v -755.3 z m -974.15,1245.9 h 1009.44 c 589.43,0 945.93,-349.5 945.93,-854.2 v -7 c 0,-571.8 -444.73,-868.301 -998.85,-868.301 H 8982.98 V 0 h -543.55 v 2470.7" /></g></g></svg>

After

Width:  |  Height:  |  Size: 12 KiB

BIN
public/assets/logo_only.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 128 KiB

BIN
public/assets/og-image.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 556 KiB

9
public/browserconfig.xml Normal file
View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png?v=2"/>
<TileColor>#3e0a1e</TileColor>
</tile>
</msapplication>
</browserconfig>

BIN
public/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 887 B

BIN
public/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

26
public/index.html Normal file
View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>NFP ehf. - Programming, Video, Live & Operations Contractors</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="/main.css" rel="stylesheet" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png?v=2">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png?v=2">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png?v=2">
<link rel="manifest" href="/site.webmanifest?v=2">
<link rel="mask-icon" href="/safari-pinned-tab.svg?v=2" color="#3e0a1e">
<link rel="shortcut icon" href="/favicon.ico?v=2">
<meta name="msapplication-TileColor" content="#3e0a1e">
<meta name="theme-color" content="#3e0a1e">
<meta property="og:image:width" content="279">
<meta property="og:image:height" content="279">
<meta property="og:title" content="NFP ehf.">
<meta property="og:description" content="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.">
<meta property="og:url" content="https://nfp.is">
<meta property="og:image" content="https://nfp.is/assets/og-image.jpg">
</head>
<body>
<div id="container"></div>
<script src="/main.js"></script>
</body>
</html>

BIN
public/mstile-150x150.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 KiB

View File

@ -0,0 +1 @@
<svg version="1" xmlns="http://www.w3.org/2000/svg" width="1557.333" height="1557.333" viewBox="0 0 1168.000000 1168.000000"><path d="M469.7 25.6c-.1.1-5.3.5-11.4.8-6.2.4-12.8.9-14.5 1.1-1.8.2-5.8.6-8.8 1-54.9 6.4-108.7 25.4-159.4 56.4-22.3 13.6-47.3 33.6-68.2 54.5-16.9 17-23.7 24.6-34.1 38.3-7.3 9.5-22.4 31.5-23.6 34.3-.4.8-2.4 4.4-4.6 8-12.3 20.6-27.7 55.8-34.7 79.2-2 7.1-3.7 10.8-6.2 13.5-1.8 2.1-4.9 5.6-6.9 7.8-11.2 12.4-29.6 37.2-40 54.1-6.3 10.1-20.8 38.2-26.4 50.9-8.7 20.2-21 60.6-23.4 77-.2 1.1-1 5.8-1.9 10.5-.8 4.7-1.8 11.2-2.2 14.5-.3 3.3-.8 6.9-1 8C0 548.1.1 608 2.5 620.9c.1.9.6 4.1.9 7.2.4 3.1.8 6.5 1 7.5.2 1.1.9 5.3 1.6 9.4.7 4.1 2.1 11.3 3.2 16 1.1 4.7 2.1 9.2 2.3 10 1.2 5.6 4.2 16.3 7.7 27 17.4 54.1 48.8 107.1 87.1 146.8l6.1 6.3 4.8 16.1c5 16.5 5.3 17.5 13.3 36.8 12.3 29.6 35 68.5 51.6 88.5 1 1.1 4.6 5.6 8 10 9.6 12 39.8 41.8 53.9 53.1 37.2 29.7 75.6 50.9 120 66.2 12.8 4.4 37.1 11.1 45.5 12.6 1.7.3 8 1.4 14 2.5 21.3 3.7 40.9 5.4 64 5.4 14.4.1 32-.7 41.5-1.8 1.9-.3 5.8-.7 8.5-1 6.3-.7 20.8-3.1 30.5-5.1 4.1-.9 8.5-1.8 9.7-2 1.2-.2 3.2-.8 4.4-1.3 1.5-.5 5.2-.1 10.4 1 4.4 1 9.6 2 11.5 2.4 1.9.3 4.6.7 6 1 2.8.5 6.5 1.1 12.7 2 6.7.9 9.3 1.2 17.3 2 4.1.4 9.3.9 11.5 1.1 5.3.5 43.3.5 51-.1 8.8-.6 23.6-2.2 28.5-3 1.4-.2 5.7-.9 9.5-1.5 35.3-5.4 77.1-19.1 112-36.8 17.4-8.8 31.8-17.5 51.5-31.3 27.6-19.1 59.7-50.2 80.9-78.3 2.9-3.9 5.6-7.3 6-7.6.4-.3 4.5-6.4 9.2-13.5 15.4-23.4 26.5-44.3 36.7-69.2 5.1-12.2 14.2-39.2 14.2-41.7 0-.8 1.7-3.2 3.8-5.4 39.9-41.8 66.7-82.6 85.2-130.2 2.9-7.4 5.7-14.4 6.1-15.5 1.4-3.2 8.4-26.4 9.3-30.6.7-3.1 1-4.8 3.4-14.9 1.1-4.7 2.3-10.1 2.6-12 .3-1.9.8-4.4 1-5.6.2-1.2.7-4.5 1.1-7.5.3-3 .8-6.1 1-6.9.4-1.7 1.1-8.3 2.2-21 1.4-17.9.8-57.5-1.3-74.2-.7-6-2.5-18.9-3-21.3-.2-1-.6-3.7-.9-6-.4-2.2-1-5.6-1.5-7.5-.5-1.9-1.9-7.6-3.1-12.5-9.1-38.4-26.5-80.2-46.7-112.5-4-6.3-7.8-12.4-8.5-13.4-2-3.3-18.3-25.1-22.5-30.1-3.5-4.3-15.1-17.3-18.9-21.3-1.8-1.8-3.3-3.9-3.3-4.6 0-.7-.5-1.7-1.2-2.4s-.9-1.2-.5-1.2c.9 0-7.1-22.3-13.1-36.6-9.3-22-19.1-40.5-31.8-60.1-6.1-9.4-20.5-29.6-22.4-31.3-.3-.3-2.5-3-5-6-6.8-8.4-11.5-13.4-24-26-39.3-39.5-87.1-70.2-139.4-89.6-11.5-4.3-32-10.9-36.8-11.8-1.3-.2-3-.7-3.8-1-.8-.3-2.6-.8-4-1-1.4-.3-6.8-1.4-12-2.5-5.2-1.2-11.1-2.3-13-2.6-2-.3-4.5-.7-5.6-.9-1.1-.2-4.7-.7-7.9-1.1-3.3-.4-6.7-.9-7.6-1-16.5-3-71.7-2.7-93.4.5-3.3.5-8.1 1.1-10.7 1.5-5.2.6-31.6 5.9-36.3 7.3-2.2.6-5.5.2-12-1.4-4.9-1.3-10.6-2.6-12.5-2.9-1.9-.3-4.2-.8-5-1-.8-.2-2.8-.7-4.5-1-15.5-2.7-18.5-3.1-26.5-4-2.5-.3-6-.7-7.9-.9-7.7-1.1-49.6-2.7-50.4-2zM590 377.5c61.3 15.9 125 52.2 171.1 97.5 4.6 4.4 6.7 9.2 8.3 18.5.2 1.6 1.4 7.7 2.4 13.5 2.4 12.5 2.9 15.6 3.7 23.5.4 3.3.8 7.1 1.1 8.5 2.2 13.9 2.1 60.1-.1 78.7-1.1 8.8-2.6 20-3.1 22.8-.3 1.6-.7 3.9-.8 5-.2 1.1-.6 3.3-.9 5-.4 1.6-.9 4.4-1.2 6.1-.2 1.7-1.8 8.4-3.5 15l-3 11.8-9.2 9c-34.6 33.5-73.5 59.8-115.3 78.1-7.1 3.1-13.9 6-15 6.5-3.7 1.6-18.9 6.8-27.5 9.5-4.7 1.5-9.8 3.1-11.4 3.6-4.6 1.4-6.3 1.2-19.4-3.1-25.8-8.3-56-21.8-78.1-34.7-9.5-5.5-33.1-21-34.1-22.3-.3-.4-2.1-1.7-4.1-3.1-5.3-3.5-23.3-18.5-29.5-24.4-1.1-1.1-4.5-4.3-7.5-7.1s-5.9-5.7-6.6-6.5c-1.3-1.6-7.8-26.1-8.8-33.1-.3-2.4-1-5.9-1.5-7.8-.5-1.9-1.1-5.5-1.5-8-.3-2.5-.8-5.6-1-7-4.1-23.3-5.1-69.9-2-94.5.2-1.7.7-5.5 1-8.5.6-5.6 1.4-10.9 2-14.5 1.7-10 4.1-21.7 6.2-30.2l2.5-10.2 6.7-6.3c37.6-35.4 83.3-63.7 132.4-81.9 7-2.6 18.8-6.6 22.2-7.5.6-.2 3.9-1.2 7.5-2.2 8.4-2.5 7.2-2.6 18 .3z"/></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

20
public/site.webmanifest Normal file
View File

@ -0,0 +1,20 @@
{
"name": "NFP ehf.",
"short_name": "NFP ehf.",
"icons": [
{
"src": "/android-chrome-192x192.png?v=2",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png?v=2",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#3e0a1e",
"background_color": "#3e0a1e",
"start_url": "https://nfp.is",
"display": "standalone"
}