added example 24a7865e
Steve · 2023-03-21 18:51 1 file(s) · +16 −0
src/pages/hidden.astro (added) +16 −0
1 +
---
2 +
import PageLayout from "@/layouts/Base";
3 +
4 +
const meta = {
5 +
	title: "Hidden",
6 +
	description: "shhhhh",
7 +
};
8 +
---
9 +
10 +
<PageLayout meta={meta}>
11 +
	<div class="space-y-6">
12 +
		<h1 class="title">Secrets</h1>
13 +
    <iframe title="submarine" src="https://app.submarine.me/pzrSPDnFdUmgXa3XvubuiS" width="600" height="400" />
14 +
	</div>
15 +
</PageLayout>
16 +