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