8 lines
163 B
Text
8 lines
163 B
Text
---
|
|
import BaseLayout from "../layouts/BaseLayout.astro";
|
|
const pageTitle = "Home Page";
|
|
---
|
|
|
|
<BaseLayout pageTitle={pageTitle}>
|
|
<h2>ブログ</h2>
|
|
</BaseLayout>
|