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

@ -1,20 +1,24 @@
import Creeper from "@/components/creeper"; import Creeper from "@/components/creeper";
import { minecrafter } from "@/font/fonts"; import { minecrafter } from "@/font/fonts";
import { cn } from "@/lib/utils"; import { cn } from "@/lib/utils";
import { ReactElement } from "react";
/** /**
* The 404 page. * The 404 page.
* *
* @returns the page jsx * @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"> <main className="h-[84vh] flex flex-col gap-3 justify-center items-center pointer-events-none">
{/* Creeper */} {/* Creeper */}
<Creeper /> <Creeper />
{/* Header */} {/* Header */}
<h1 <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 We&apos;re Sssssorry
</h1> </h1>