More text

This commit is contained in:
Daniel Kluge 2022-10-29 22:17:00 +02:00
parent 47f8fdb900
commit b248bc8742
3 changed files with 14 additions and 2 deletions

View File

@ -1,4 +1,5 @@
import type { NextPage } from "next"; import type { NextPage } from "next";
import Link from "next/link";
import gen from "random-seed"; import gen from "random-seed";
import Layout from "../components/Blog/Layout"; import Layout from "../components/Blog/Layout";
import type { ContentList, Project, Diary } from "../lib/content/types"; import type { ContentList, Project, Diary } from "../lib/content/types";
@ -41,7 +42,13 @@ const Blog: NextPage<{ content: ContentList }> = ({content}) => {
return <Layout> return <Layout>
<h1>Hello there!</h1> <h1>Hello there!</h1>
<p>Miaumiau Lorem ipsum</p> <p className={styles.frontText}>
Welcome to my website!<br/>
You can find here blog entries about some projects I did and some diaries where I document progress.<br/>
Interested in me? Visit the <Link href="/me"><a className="nocolor">About Me page</a></Link>, and you will find out more about me.<br/>
On the right of the navigation, you will find what used to be my website - a CLI you can play around with.<br/><br/>
Have fun!
</p>
<h2>Projects</h2> <h2>Projects</h2>
{ generateCards("project") } { generateCards("project") }
<h2>Diaries</h2> <h2>Diaries</h2>

View File

@ -51,7 +51,7 @@
flex-direction: row; flex-direction: row;
flex-wrap: wrap; flex-wrap: wrap;
align-items: center; align-items: center;
justify-content: center; justify-content: space-evenly;
.divider { .divider {
margin: 0 10px; margin: 0 10px;

View File

@ -5,3 +5,8 @@
justify-content: space-evenly; justify-content: space-evenly;
padding: 0; padding: 0;
} }
.frontText {
font-size: 1.1em;
line-height: 1.5;
}