blob: 6cba4c7fec6ca82d1074cebb863a46381df9554e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
---
import { Markdown } from 'astro/components';
import Layout from '../layouts/Main.astro';
---
<Layout content={{ title: 'Hello world!' }}>
<Markdown>
# Hello world!
This is a starter template, have fun building your next documentation site with [Astro](https://astro.build).
It offers the right mix of simple-to-use [Markdown pages](/example) and rich, interactive components embedded in `.astro` files using `<Markdown>`.
The docs template has some nice components, for more information click [here](/getting-started).
</Markdown>
</Layout>
|