src/pages/videos.astro 606 B raw
1
---
2
import PageLayout from "@/layouts/Base";
3
4
const meta = {
5
	title: "Videos",
6
	description: "Video content made by Steve Simkins",
7
};
8
---
9
10
<PageLayout meta={meta}>
11
	<div class="space-y-6">
12
		<h1 class="title">Videos</h1>
13
		<p>Here are some samples of video content I've produced to help users!</p>
14
		<iframe
15
			class="h-full w-full md:h-96"
16
			src="https://www.youtube.com/embed/YQMktd0llOo"
17
			title="YouTube video player"
18
			frameborder="0"
19
			allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
20
			allowfullscreen></iframe>
21
	</div>
22
</PageLayout>