mirror of
https://github.com/Xahau/xahau-web.git
synced 2026-08-22 02:20:51 +00:00
17 lines
437 B
Plaintext
17 lines
437 B
Plaintext
---
|
|
import '../styles/main.css'
|
|
import XahauContest from '../components/XahauContest.astro'
|
|
import BaseLayout from '../layouts/BaseLayout.astro'
|
|
|
|
const _frontmatter = {
|
|
title: 'Xahau Dev Contest',
|
|
description: 'Ecosystem Rising — Build user-facing services powered by Xahau',
|
|
}
|
|
---
|
|
|
|
<BaseLayout frontmatter={_frontmatter}>
|
|
<div class="flex-none container mx-auto max-w-7xl p-6 pb-12">
|
|
<XahauContest />
|
|
</div>
|
|
</BaseLayout>
|