mirror of
https://github.com/Unkn0wnCat/KevinK.dev.js.git
synced 2025-06-10 06:32:06 +02:00
Initialize project and port basics
This commit is contained in:
commit
ebb4f4d515
31 changed files with 20401 additions and 0 deletions
18
src/pages/projects.js
Normal file
18
src/pages/projects.js
Normal 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>
|
||||
);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue