feat: add contents of about page

This commit is contained in:
Mathias Schopmans
2024-02-20 09:11:12 +01:00
committed by Mathias Schopmans
parent c29e518f90
commit 563d8debc0
5 changed files with 103 additions and 8 deletions

View File

@@ -1,5 +1,7 @@
import Head from "next/head";
import about from "../../data/about.json";
import { formatTitle } from "@/lib/format";
import { CustomPage } from "@/pages/_app";
@@ -10,7 +12,7 @@ const HelpAndAbout: CustomPage = () => {
<title>{formatTitle("Help and About")}</title>
</Head>
<h1>Help and about</h1>
<div dangerouslySetInnerHTML={{ __html: about.body }} />
</>
);
};

View File

@@ -84,6 +84,10 @@ h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
}
ul,
ol {
padding-left: 16px;