14 lines
278 B
Plaintext
14 lines
278 B
Plaintext
---
|
|
// Path: 00-Lesson-Site/frontend/src/pages/resources.astro
|
|
|
|
import Layout from "../layouts/LessonLayout.astro";
|
|
---
|
|
|
|
<Layout>
|
|
<h1>THIS PAGE IS EMPTY</h1>
|
|
<p>But you can find the lessons here!</p>
|
|
<ul>
|
|
<li><a href="lessons/01-intro">Lesson 01!</a></li>
|
|
</ul>
|
|
</Layout>
|