From b277344f4e760d6b7504210e551879f9ffe4d45e Mon Sep 17 00:00:00 2001 From: Taken Date: Fri, 12 Sep 2025 23:57:23 +0200 Subject: [PATCH] Updated naming --- src/app/(main)/page.tsx | 2 +- src/app/layout.tsx | 4 ++-- src/components/header.tsx | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/(main)/page.tsx b/src/app/(main)/page.tsx index cdee586..5ac7969 100644 --- a/src/app/(main)/page.tsx +++ b/src/app/(main)/page.tsx @@ -4,7 +4,7 @@ export default function Home() { return (
-

Hypixel Stats

+

HypStats

diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9d4dfe2..b2e3b11 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -8,8 +8,8 @@ import type { Metadata } from "next" export const metadata: Metadata = { title: { - template: "%s | Hypixel Stats", - default: "Hypixel Stats" + template: "%s | HypStats", + default: "HypStats" } } diff --git a/src/components/header.tsx b/src/components/header.tsx index 4ce43ca..03fca7c 100644 --- a/src/components/header.tsx +++ b/src/components/header.tsx @@ -7,7 +7,7 @@ export default function Header({ searchBar = false }: { searchBar?: boolean }) {