blob: c276fe79db0d235c998850cd5d70d788ca910e2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
---
import Page from "../layouts/Page.astro";
import "../styles/cards.css";
import YouTubeVideos from "../components/YouTubeVideos.svelte";
---
<Page title="Videos" description="All videos that I have made on YouTube">
<main>
<YouTubeVideos client:load />
</main>
</Page>
|