mirror of
https://github.com/Xahau/xahau-web.git
synced 2026-08-21 18:10:51 +00:00
18 lines
441 B
Plaintext
18 lines
441 B
Plaintext
---
|
|
import '../../styles/main.css'
|
|
import XahauAbout from '../../components/XahauAbout.astro'
|
|
import BaseLayout from '../../layouts/BaseLayout.astro'
|
|
|
|
const _frontmatter = {
|
|
title: 'Sobre Xahau',
|
|
description:
|
|
'Blockchain L1 empresarial con programabilidad basada en cuentas',
|
|
}
|
|
---
|
|
|
|
<BaseLayout frontmatter={_frontmatter}>
|
|
<div class="page-content flex-1 container mx-auto max-w-7xl p-6">
|
|
<XahauAbout />
|
|
</div>
|
|
</BaseLayout>
|