summaryrefslogtreecommitdiff
path: root/src/pages/lul.astro
blob: 44ec1dc328ecae219470fa253ea5de931bac5170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
---
import Base from "@layouts/Base.astro";
const title = "fard";
const description = "xd";
---

<Base title={title} description={description}>
	<div class="flex justify-center p-5">
		<video width="1280" height="720" controls autoplay muted>
			<source src="/files/rickroll.mp4" type="video/mp4" />
		</video>
	</div>
</Base>