13 lines
275 B
Plaintext
13 lines
275 B
Plaintext
---
|
|
// Path: 00-Lesson-Site/src/pages/index.astro
|
|
|
|
import Layout from "../layouts/LessonLayout.astro";
|
|
---
|
|
|
|
<Layout>
|
|
<h1>Welcome to the Lesson Site</h1>
|
|
<p>This is the homepage of the lesson site built with Astro.</p>
|
|
|
|
<a href="/lessons/01-intro">Lesson 1</a>
|
|
</Layout>
|