diff --git a/Frontend/src/app/layout.tsx b/Frontend/src/app/layout.tsx
index 49b93e7..7b197d4 100644
--- a/Frontend/src/app/layout.tsx
+++ b/Frontend/src/app/layout.tsx
@@ -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.
@@ -22,32 +23,32 @@ export const viewport: Viewport = config.viewport;
* @returns the layout jsx
*/
const RootLayout = ({
- children,
+ children,
}: Readonly<{
- children: React.ReactNode;
-}>): JSX.Element => {
- const analyticsDomain: string | undefined = config.analyticsDomain;
- return (
-
-
- {analyticsDomain && (
-
- )}
-
-
-
-
-
- {children}
-
-
-
-
-
- );
+ children: React.ReactNode;
+}>): ReactElement => {
+ const analyticsDomain: string | undefined = config.analyticsDomain;
+ return (
+
+
+ {analyticsDomain && (
+
+ )}
+
+
+
+
+
+ {children}
+
+
+
+
+
+ );
};
export default RootLayout;
diff --git a/Frontend/src/app/not-found.tsx b/Frontend/src/app/not-found.tsx
index b4a5768..d7a6762 100644
--- a/Frontend/src/app/not-found.tsx
+++ b/Frontend/src/app/not-found.tsx
@@ -1,28 +1,32 @@
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 => (
-
- {/* Creeper */}
-
+const NotFoundPage = (): ReactElement => (
+
+ {/* Creeper */}
+
- {/* Header */}
-
- We're Sssssorry
-
+ {/* Header */}
+
+ We're Sssssorry
+
- {/* Error */}
-
- The page you were looking for could not be found.
-
-
+ {/* Error */}
+
+ The page you were looking for could not be found.
+
+
);
export default NotFoundPage;