This commit is contained in:
2022-07-15 21:19:36 +08:00
commit bf8823b998
28 changed files with 41261 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
<Title text="Projects" />
- [3D Art with Cinema4D](https://www.lekoarts.de/art/3d?utm_source=minimal-blog&utm_medium=Theme)
- [Landscape Photography](https://www.lekoarts.de/art/photography?utm_source=minimal-blog&utm_medium=Theme)

View File

@@ -0,0 +1,5 @@
<Text sx={{ fontSize: [4, 5, 6], fontWeight: `bold`, color: `heading` }}>
Hi.
</Text>
I'm LekoArts, your theme creator. I'm passionate about open source & teaching. Learn more about Gatsby & React on [my website](https://www.lekoarts.de?utm_source=minimal-blog&utm_medium=Starter).

11
src/pages/404.jsx Normal file
View File

@@ -0,0 +1,11 @@
import * as React from "react"
import Layout from "@lekoarts/gatsby-theme-minimal-blog/src/components/layout"
const NotFound = () => (
<Layout>
<h1>404 - Page Not Found</h1>
<p>Unfortunately we couldn't find what you were looking for :(</p>
</Layout>
)
export default NotFound