diff options
Diffstat (limited to 'src/pages')
| -rw-r--r-- | src/pages/videos.astro | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/pages/videos.astro b/src/pages/videos.astro new file mode 100644 index 0000000..c276fe7 --- /dev/null +++ b/src/pages/videos.astro @@ -0,0 +1,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> |
