This repository has been archived on 2026-05-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Web-Dev-Lesson-Test/00-Lesson-Site/frontend/src/pages/resources.astro
2025-12-09 22:10:27 +00:00

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>