forked from phc/website
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
388 B
Plaintext
17 lines
388 B
Plaintext
---
|
|
import BaseLayout from '../../layouts/BaseLayout.astro'
|
|
|
|
import Header from '../../components/Header.astro'
|
|
import Footer from '../../components/Footer.astro'
|
|
|
|
import { Content } from '../../content/meta/design.mdx'
|
|
---
|
|
|
|
<BaseLayout {...Astro.props} pageName="design">
|
|
<Header />
|
|
<main class="text-content center">
|
|
<Content />
|
|
</main>
|
|
<Footer />
|
|
</BaseLayout>
|