Skip to content

Commit 6f747f7

Browse files
committed
add placeholder Lectures page and link it to sidebar [#41]
1 parent 43a0f0d commit 6f747f7

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

src/components/Sidebar/Sidebar.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const sections = [
2828
icon: "mdi mdi-video",
2929
title: "Lectures",
3030
disabled: false,
31-
link: "https://www.youtube.com/playlist?list=PLY7TEz3ZRQHTnY56q2uJtdXg-bl-c0sDk",
31+
link: "/lectures",
3232
},
3333
{ icon: "mdi mdi-creation", title: "Sandbox", disabled: true },
3434
// { icon: "mdi mdi-beaker", title: "Experiments", disabled: true },

src/pages/lectures.astro

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
---
2+
import Back from "@components/Back/Back.astro";
3+
import { default as Layout } from "src/layouts/Content/Content.astro";
4+
---
5+
6+
<Layout title="Lectures">
7+
<div class="Question__bar">
8+
<Back href={`/`} label="Home" />
9+
</div>
10+
11+
<h1>📚 Lectures</h1>
12+
<p>This is a placeholder page for archived lectures. YAML integration coming soon.</p>
13+
</Layout>

0 commit comments

Comments
 (0)