9 lines
297 B
Text
9 lines
297 B
Text
---
|
|
import DefaultLayout from '@/layouts/DefaultLayout.astro';
|
|
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
|
|
import SignupSection from '@/components/sections/signup-section';
|
|
---
|
|
|
|
<DefaultLayout title={SITE_TITLE} description={SITE_DESCRIPTION}>
|
|
<SignupSection />
|
|
</DefaultLayout>
|