Updated layout

This commit is contained in:
2025-09-16 14:00:01 +02:00
parent 190e80bc40
commit 2867ed1ca7
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ export default function StatsLayout({ children }: LayoutProps<"/">) {
return (
<>
<Header searchBar />
<div>
<div className="pt-header">
{children}
</div>
</>

View File

@@ -78,7 +78,7 @@ async function SuspendedPage({ params }: Pick<PageProps<"/player/[ign]">, "param
const { data: layout } = schema.safeParse(JSON.parse(c.get(COOKIE_VALUES.statsOrder)?.value ?? "null"))
return (
<div className="flex flex-col items-center pb-5">
<div className="flex flex-col items-center pt-20 pb-5">
<DisplayName
ign={player.displayname}
uuid={player.uuid}

View File

@@ -26,7 +26,7 @@ export default function DisplayName(
}
) {
return (
<div className="flex gap-2 items-center mt-35">
<div className="flex gap-2 items-center">
<Link href={`https://namemc.com/profile/${uuid}`}>
<Image
src={head(uuid, 40)}