diff --git a/src/app/(main)/layout.tsx b/src/app/(main)/layout.tsx
index 67ee0ba..3936e8c 100644
--- a/src/app/(main)/layout.tsx
+++ b/src/app/(main)/layout.tsx
@@ -4,7 +4,7 @@ export default function RootLayout({ children }: LayoutProps<"/">) {
return (
<>
-
+
{children}
>
diff --git a/src/app/(stats)/layout.tsx b/src/app/(stats)/layout.tsx
index 0efcbbd..72fc156 100644
--- a/src/app/(stats)/layout.tsx
+++ b/src/app/(stats)/layout.tsx
@@ -4,7 +4,7 @@ export default function StatsLayout({ children }: LayoutProps<"/">) {
return (
<>
-
+
{children}
>
diff --git a/src/app/(stats)/player/[ign]/page.tsx b/src/app/(stats)/player/[ign]/page.tsx
index 2ac7d5e..d8aff39 100644
--- a/src/app/(stats)/player/[ign]/page.tsx
+++ b/src/app/(stats)/player/[ign]/page.tsx
@@ -55,7 +55,7 @@ async function SuspendedPage({ params }: Pick
, "param
if (!mc) {
return (
-
Player not found
+ Player not found
)
}
@@ -65,7 +65,7 @@ async function SuspendedPage({ params }: Pick, "param
if (!player) {
return (
-
Player hasn't joined hypixel
+ Player hasn't joined hypixel
)
}
@@ -78,7 +78,7 @@ async function SuspendedPage({ params }: Pick, "param
const { data: layout } = schema.safeParse(JSON.parse(c.get(COOKIE_VALUES.statsOrder)?.value ?? "null"))
return (
-