Initialize project and port basics

This commit is contained in:
Kevin Kandlbinder 2020-12-21 18:23:28 +01:00
commit ebb4f4d515
31 changed files with 20401 additions and 0 deletions

18
src/pages/projects.js Normal file
View file

@ -0,0 +1,18 @@
import React from "react"
import Layout from "../layouts/default";
import { Trans, Link, useI18next } from "gatsby-plugin-react-i18next"
export default function ProjectsPage() {
const {t} = useI18next();
return (
<Layout module="projects" title={t("projects")}>
<section>
<div>
<h1><Trans>projects</Trans></h1>
</div>
</section>
</Layout>
);
}