blob: 75ca0da4f913ce3043cda6bdfd48d856b3fe5a2b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
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>`.
</Markdown>
</Layout>
|