WIP cb16a075
Steve · 2024-09-20 06:40 1 file(s) · +14 −0
src/pages/auth/auth-code-error.astro (added) +14 −0
1 +
---
2 +
import PageLayout from "@/layouts/Base";
3 +
4 +
const meta = {
5 +
	title: "Auth Error",
6 +
	description: "Something went wrong",
7 +
};
8 +
---
9 +
10 +
<PageLayout meta={meta}>
11 +
	<div class="space-y-6">
12 +
	 <p>Error with auth</p>
13 +
	</div>
14 +
</PageLayout>