From b248bc87427a7e91ca47e79f68b1812261f50cf4 Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Sat, 29 Oct 2022 22:17:00 +0200 Subject: [PATCH] More text --- pages/index.tsx | 9 ++++++++- styles/Blog/Blog.module.scss | 2 +- styles/Blog/Front.module.scss | 5 +++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/pages/index.tsx b/pages/index.tsx index f4e6666..99cd277 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -1,4 +1,5 @@ import type { NextPage } from "next"; +import Link from "next/link"; import gen from "random-seed"; import Layout from "../components/Blog/Layout"; import type { ContentList, Project, Diary } from "../lib/content/types"; @@ -41,7 +42,13 @@ const Blog: NextPage<{ content: ContentList }> = ({content}) => { return

Hello there!

-

Miaumiau Lorem ipsum

+

+ Welcome to my website!
+ You can find here blog entries about some projects I did and some diaries where I document progress.
+ Interested in me? Visit the About Me page, and you will find out more about me.
+ On the right of the navigation, you will find what used to be my website - a CLI you can play around with.

+ Have fun! +

Projects

{ generateCards("project") }

Diaries

diff --git a/styles/Blog/Blog.module.scss b/styles/Blog/Blog.module.scss index c264d50..2f67000 100644 --- a/styles/Blog/Blog.module.scss +++ b/styles/Blog/Blog.module.scss @@ -51,7 +51,7 @@ flex-direction: row; flex-wrap: wrap; align-items: center; - justify-content: center; + justify-content: space-evenly; .divider { margin: 0 10px; diff --git a/styles/Blog/Front.module.scss b/styles/Blog/Front.module.scss index b8c0edd..f16400e 100644 --- a/styles/Blog/Front.module.scss +++ b/styles/Blog/Front.module.scss @@ -4,4 +4,9 @@ flex-wrap: wrap; justify-content: space-evenly; padding: 0; +} + +.frontText { + font-size: 1.1em; + line-height: 1.5; } \ No newline at end of file