feat: add some static mdx pages

This commit is contained in:
Stefan Imhoff
2023-04-04 17:42:57 +02:00
parent bf67378660
commit 8f0e630cf7
6 changed files with 49 additions and 4 deletions

9
src/pages/about.mdx Normal file
View File

@@ -0,0 +1,9 @@
---
layout: ../layouts/PageLayout.astro
title: About
---
import { mapping } from '../mdx-components.ts';
export const components = mapping;
About Page

9
src/pages/colophon.mdx Normal file
View File

@@ -0,0 +1,9 @@
---
layout: ../layouts/PageLayout.astro
title: Colophon
---
import { mapping } from '../mdx-components.ts';
export const components = mapping;
Colophon Page

9
src/pages/imprint.mdx Normal file
View File

@@ -0,0 +1,9 @@
---
layout: ../layouts/PageLayout.astro
title: Imprint
---
import { mapping } from '../mdx-components.ts';
export const components = mapping;
Imprint Page

View File

@@ -1,8 +1,8 @@
---
import Layout from '../layouts/Layout.astro';
import Headline from '../components/Headline.astro';
import BaseLayout from '../layouts/BaseLayout.astro';
import { Headline } from '../components';
---
<Layout title="Homepage">
<BaseLayout title="Homepage">
<Headline>Homepage</Headline>
</Layout>
</BaseLayout>

9
src/pages/now.mdx Normal file
View File

@@ -0,0 +1,9 @@
---
layout: ../layouts/PageLayout.astro
title: Now
---
import { mapping } from '../mdx-components.ts';
export const components = mapping;
Now Page

9
src/pages/tools.mdx Normal file
View File

@@ -0,0 +1,9 @@
---
layout: ../layouts/PageLayout.astro
title: Tools
---
import { mapping } from '../mdx-components.ts';
export const components = mapping;
Tools Page