13 lines
262 B
Plaintext
13 lines
262 B
Plaintext
---
|
|
// Path: src/pages/changelog.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>
|