mirror of
https://github.com/Xahau/xahau-web.git
synced 2026-08-19 01:01:42 +00:00
17 lines
453 B
Plaintext
17 lines
453 B
Plaintext
---
|
|
import '../../styles/main.css'
|
|
import XahauRoadmap from '../../components/XahauRoadmap.astro'
|
|
import BaseLayout from '../../layouts/BaseLayout.astro'
|
|
|
|
const _frontmatter = {
|
|
title: 'ロードマップ',
|
|
description: 'Xahau roadmap across the upcoming quarters',
|
|
}
|
|
---
|
|
|
|
<BaseLayout frontmatter={_frontmatter}>
|
|
<div class="page-content flex-1 container mx-auto max-w-7xl p-6">
|
|
<XahauRoadmap lang="ja" theme="light" />
|
|
</div>
|
|
</BaseLayout>
|