src/pages/videos.astro 542 B raw
1
---
2
import PageLayout from "@/layouts/Base";
3
import { YouTube } from "@astro-community/astro-embed-youtube";
4
5
const meta = {
6
	title: "Videos",
7
	description: "Video content made by Steve Simkins",
8
};
9
---
10
11
<PageLayout meta={meta}>
12
	<div class="space-y-6">
13
		<h1 class="title">Videos</h1>
14
		<p>Here are some samples of video content I've produced to help users!</p>
15
		<YouTube id="GlpfIherX7U" />
16
		<YouTube id="lhJwEckGi4U" />
17
    <YouTube id="hlfVoTNUPWU" />
18
		<YouTube id="TaJzw_2hEJI" />
19
		<YouTube id="sUVkr_lhE2g" />
20
	</div>
21
</PageLayout>