9 lines
205 B
Plaintext
9 lines
205 B
Plaintext
---
|
|
import { css } from '@styled-system/css'
|
|
import BasicLayout from '@/components/layout/Basic.astro'
|
|
---
|
|
|
|
<BasicLayout>
|
|
<h1 class={css({ fontSize: 'h1', fontWeight: 'bold' })}>Home</h1>
|
|
</BasicLayout>
|