moved project data under different folder

This commit is contained in:
Toni Ristola
2019-10-24 18:03:49 +03:00
parent 2ea81dad3c
commit 82ebbe0d92
2 changed files with 2 additions and 2 deletions

View File

@@ -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 './patientProjects'
import { projects } from '../data/indexData';
const Hero = () => (
<div className="header">
<video

View File

@@ -1,27 +0,0 @@
export const projects = [
{
title: "RE:DOM",
description:
" Tiny (2 KB) turboboosted JavaScript library for creating user interfaces. Develop web apps with 100 % JavaScript and web standards.",
url: "https://redom.js.org",
image: "/static/images/redom.svg",
},
{
title: "Code::Stats",
description: "Code::Stats is a free stats tracking service for programmers",
url: "https://codestats.net/",
image: "/static/images/codestats.png",
},
{
title: "Reactabular",
description: "A framework for building the React table you need",
url: "https://reactabular.js.org/",
image: "/static/images/reactabular.png",
},
{
title: "Avain.app",
description: "Secure one-time password manager (PWA + Web Crypto)",
url: "https://avain.app",
image: "/static/images/avain.svg",
},
];