cleanup
All checks were successful
deploy / deploy (push) Successful in 56s

This commit is contained in:
Lee 2023-10-20 18:23:49 +01:00
parent fbcf5f3651
commit 0f27952235
4 changed files with 48 additions and 18 deletions

@ -1,3 +1,4 @@
import Card from "@/components/Card";
import Container from "@/components/Container";
import { headers } from "next/headers";
@ -6,14 +7,12 @@ export default async function NotFound() {
const domain = headersList.get("host");
return (
<Container>
<div className="flex h-full items-center justify-center">
<div className="rounded-md bg-gray-800 p-3 text-center opacity-90">
<p className="text-xl font-bold text-red-500">404 Not Found</p>
<p className="text-lg text-gray-300">
The page you requested does not exist.
</p>
</div>
</div>
<Card className="flex h-full items-center justify-center">
<p className="text-xl font-bold text-red-500">404 Not Found</p>
<p className="text-lg text-gray-300">
The page you requested does not exist.
</p>
</Card>
</Container>
);
}

@ -1,6 +1,7 @@
"use client";
import Avatar from "@/components/Avatar";
import Card from "@/components/Card";
import Container from "@/components/Container";
import Label from "@/components/Label";
import Pagination from "@/components/Pagination";
@ -96,7 +97,7 @@ export default function Player({ params }: { params: { id: string } }) {
return (
<main>
<Container>
<div className="mt-2 flex w-full flex-col justify-center rounded-md bg-gray-800">
<Card className="mt-2">
<div className="p-3 text-center">
<div role="status">
{player.loading && <Spinner />}
@ -115,7 +116,7 @@ export default function Player({ params }: { params: { id: string } }) {
)}
</div>
</div>
</div>
</Card>
</Container>
</main>
);
@ -127,7 +128,7 @@ export default function Player({ params }: { params: { id: string } }) {
<main>
<Container>
{/* Player Info */}
<div className="mt-2 flex w-full flex-row justify-center rounded-md bg-gray-800 xs:flex-col">
<Card className="mt-2">
<div className="flex flex-col items-center gap-3 p-3 xs:flex-row xs:items-start">
<div>
<div className="flex flex-col items-center gap-2">
@ -185,11 +186,11 @@ export default function Player({ params }: { params: { id: string } }) {
</div>
</div>
</div>
</div>
</Card>
{/* Scores */}
<div className="mt-2 flex w-full flex-row justify-center rounded-md bg-gray-800 xs:flex-col">
<div className="p-3">
<Card className="mt-2 w-full xs:flex-col">
<div className="p-1">
{scores.loading ? (
<div className="flex justify-center">
<Spinner />
@ -207,7 +208,7 @@ export default function Player({ params }: { params: { id: string } }) {
className="grid grid-cols-[.95fr_6fr_3fr] pb-2 pt-2"
key={id}
>
<div className="ml-4 flex flex-col items-start justify-center">
<div className="ml-3 flex flex-col items-start justify-center">
<div className="flex flex-row items-center justify-start gap-1">
<GlobeAsiaAustraliaIcon width={20} height={20} />
<p>#{score.rank}</p>
@ -267,7 +268,7 @@ export default function Player({ params }: { params: { id: string } }) {
/>
</div>
</div>
</div>
</Card>
</Container>
</main>
);

@ -1,4 +1,5 @@
import Avatar from "@/components/Avatar";
import Card from "@/components/Card";
import Container from "@/components/Container";
import SearchPlayer from "@/components/SearchPlayer";
@ -12,7 +13,10 @@ export default function Home() {
return (
<main>
<Container>
<div className="mt-2 flex w-full flex-col items-center justify-center rounded-md bg-gray-800">
<Card
className="mt-2 w-full rounded-md bg-gray-800 text-center"
innerClassName="flex flex-col items-center justify-center"
>
<Avatar
className="m-6"
label="Player Avatar"
@ -25,7 +29,7 @@ export default function Home() {
<SearchPlayer />
<div className="mb-6"></div>
</div>
</Card>
</Container>
</main>
);

26
src/components/Card.tsx Normal file

@ -0,0 +1,26 @@
import clsx from "clsx";
type CardProps = {
className?: string;
innerClassName?: string;
children: React.ReactNode;
};
export default function Card({
className,
innerClassName,
children,
}: CardProps) {
return (
<div className={className}>
<div
className={clsx(
"rounded-md bg-gray-800 p-3 opacity-90",
innerClassName,
)}
>
{children}
</div>
</div>
);
}