blob: fe00e15a867150aa288a233c99436d8c08091740 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
---
import Markdown from 'astro/components/Markdown.astro';
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>
|