mirror of
https://github.com/kogakure/website-astro-stefanimhoff.de.git
synced 2026-02-03 12:05:28 +00:00
feat: add some static mdx pages
This commit is contained in:
9
src/pages/about.mdx
Normal file
9
src/pages/about.mdx
Normal 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
9
src/pages/colophon.mdx
Normal 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
9
src/pages/imprint.mdx
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
layout: ../layouts/PageLayout.astro
|
||||
title: Imprint
|
||||
---
|
||||
|
||||
import { mapping } from '../mdx-components.ts';
|
||||
export const components = mapping;
|
||||
|
||||
Imprint Page
|
||||
@@ -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
9
src/pages/now.mdx
Normal 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
9
src/pages/tools.mdx
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
layout: ../layouts/PageLayout.astro
|
||||
title: Tools
|
||||
---
|
||||
|
||||
import { mapping } from '../mdx-components.ts';
|
||||
export const components = mapping;
|
||||
|
||||
Tools Page
|
||||
Reference in New Issue
Block a user