diff --git a/src/app/(normal)/page.tsx b/src/app/(normal)/page.tsx
index 1c55a4e..d39b276 100644
--- a/src/app/(normal)/page.tsx
+++ b/src/app/(normal)/page.tsx
@@ -10,15 +10,23 @@ export default function Home() {
Welcome to my place!
- I'm an illustrator, character designer, miniature painter, 3d modeller, makeup artist and much more and happy to show you things i've created.
+ I'm an illustrator, character designer, miniature painter, 3d
+ modeller, makeup artist and much more and happy to show you things
+ i've created.
- If you want to commission me you can find all the information you need here: Commissions
+ If you want to commission me
+
+ you can find all the information you need here:
+ {" "}
+
+ Commissions
+
-
+
);
-}
+}
\ No newline at end of file
diff --git a/src/app/(normal)/tos/page.tsx b/src/app/(normal)/tos/page.tsx
index 2bf507f..e4fc43e 100644
--- a/src/app/(normal)/tos/page.tsx
+++ b/src/app/(normal)/tos/page.tsx
@@ -1,10 +1,10 @@
-import { prisma } from '@/lib/prisma';
-import ReactMarkdown from 'react-markdown';
+import { prisma } from "@/lib/prisma";
+import ReactMarkdown from "react-markdown";
export default async function TosPage() {
const tos = await prisma.termsOfService.findFirst({
orderBy: [{ version: "desc" }],
- })
+ });
return (
@@ -13,4 +13,4 @@ export default async function TosPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/error.tsx b/src/app/error.tsx
new file mode 100644
index 0000000..627bdf2
--- /dev/null
+++ b/src/app/error.tsx
@@ -0,0 +1,45 @@
+"use client";
+
+import Link from "next/link";
+
+import { Button } from "@/components/ui/button";
+
+export default function ErrorPage({
+ error,
+ reset,
+}: {
+ error: Error & { digest?: string };
+ reset: () => void;
+}) {
+ return (
+
+
+
+
+
+
+
+
+ Something went wrong
+
+
+ We hit a snag.
+
+
+ The page failed to load. You can try again or head back home.
+