diff --git a/data/indexData.js b/data/projects.js
similarity index 91%
rename from data/indexData.js
rename to data/projects.js
index f8c1fb8..19aa5da 100644
--- a/data/indexData.js
+++ b/data/projects.js
@@ -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;
diff --git a/data/sponsors.js b/data/sponsors.js
new file mode 100644
index 0000000..ddd18d5
--- /dev/null
+++ b/data/sponsors.js
@@ -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;
diff --git a/pages/index.jsx b/pages/index.jsx
index c34a68f..5842ba3 100644
--- a/pages/index.jsx
+++ b/pages/index.jsx
@@ -5,7 +5,7 @@ import Head from "next/head";
import InviteForm from "../components/InviteForm";
import Members from "../components/Members";
import Feed from "../components/Feed";
-import { projects } from "../data/indexData";
+import projects from "../data/projects";
const Hero = () => (