src/pages/videos.astro 601 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="lhJwEckGi4U" />
16
		<YouTube id="f3G9qY_zZq4"/>
17
		<YouTube id="aBaDnCecFRA" />
18
		<YouTube id="cD0cPt8BXQw" />
19
		<YouTube id="xsmx29Htw8o" />
20
		<YouTube id="3_5jdgiCrXI" />
21
		<YouTube id="YQMktd0llOo" />
22
	</div>
23
</PageLayout>