10 lines
No EOL
300 B
Text
10 lines
No EOL
300 B
Text
---
|
|
import DefaultLayout from '@/layouts/DefaultLayout.astro';
|
|
import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
|
|
|
|
import AllBlogs from '@/components/sections/all-blogs';
|
|
---
|
|
|
|
<DefaultLayout title={SITE_TITLE} description={SITE_DESCRIPTION}>
|
|
<AllBlogs client:only='react' />
|
|
</DefaultLayout> |