oops forgot these lol

This commit is contained in:
Braydon 2024-04-17 19:06:02 -04:00
parent b560341068
commit 6790083006
2 changed files with 46 additions and 41 deletions

@ -8,6 +8,7 @@ import ThemeProvider from "@/provider/theme-provider";
import type { Metadata, Viewport } from "next";
import PlausibleProvider from "next-plausible";
import "./globals.css";
import { ReactElement } from "react";
/**
* Site metadata & viewport.
@ -25,7 +26,7 @@ const RootLayout = ({
children,
}: Readonly<{
children: React.ReactNode;
}>): JSX.Element => {
}>): ReactElement => {
const analyticsDomain: string | undefined = config.analyticsDomain;
return (
<html lang="en" className={cn("scroll-smooth", notoSans.className)}>

@ -1,20 +1,24 @@
import Creeper from "@/components/creeper";
import { minecrafter } from "@/font/fonts";
import { cn } from "@/lib/utils";
import { ReactElement } from "react";
/**
* The 404 page.
*
* @returns the page jsx
*/
const NotFoundPage = (): JSX.Element => (
const NotFoundPage = (): ReactElement => (
<main className="h-[84vh] flex flex-col gap-3 justify-center items-center pointer-events-none">
{/* Creeper */}
<Creeper />
{/* Header */}
<h1
className={cn("text-6xl text-minecraft-green-3", minecrafter.className)}
className={cn(
"text-6xl text-minecraft-green-3",
minecrafter.className
)}
>
We&apos;re Sssssorry
</h1>