refactored sponsor data into directory data

This commit is contained in:
Toni Ristola
2019-10-25 09:34:20 +03:00
committed by Aarni Koskela
parent 76424448ec
commit 125abe45d9
4 changed files with 31 additions and 19 deletions

View File

@@ -1,4 +1,4 @@
export const projects = [
const projects = [
{
title: "RE:DOM",
description:
@@ -25,3 +25,4 @@ export const projects = [
image: "/static/images/avain.svg",
},
];
export default projects;

23
data/sponsors.js Normal file
View File

@@ -0,0 +1,23 @@
const sponsors = [
{
name: "Futurice",
href: "http://futurice.com/",
},
{
name: "Metosin",
href: "http://www.metosin.fi/",
},
{
name: "Solita",
href: "https://www.solita.fi/",
},
{
name: "Wakeone",
href: "http://wakeone.co/",
},
{
name: "Nordea",
href: "https://www.nordea.fi/",
},
];
export default sponsors;