update card
All checks were successful
deploy / deploy (push) Successful in 1m59s

This commit is contained in:
Lee
2023-10-30 16:53:55 +00:00
parent 70907395bb
commit a1af814254
13 changed files with 157 additions and 41 deletions

View File

@ -21,10 +21,7 @@ export default async function Analytics() {
return (
<main>
<Container>
<Card
className="mt-2 w-full rounded-md bg-gray-800"
innerClassName="flex flex-col items-center justify-center text-center"
>
<Card>
<h1 className="mb-1 text-3xl font-bold">Credits</h1>
<p className="mb-8 text-gray-300">
This website is made possible because of the following:

View File

@ -25,10 +25,7 @@ export default async function Analytics() {
return (
<main>
<Container>
<Card
className="mt-2 w-full rounded-md bg-gray-800"
innerClassName="flex flex-col items-center justify-center text-center"
>
<Card>
<h1 className="mb-1 text-3xl font-bold">Privacy</h1>
<p className="mb-8 text-gray-300">
This site does not collect personal data. All of the data stored is

View File

@ -13,18 +13,13 @@ export default function Home() {
return (
<main>
<Container>
<Card
className="mt-2 w-full rounded-md bg-gray-800"
innerClassName="flex flex-col items-center justify-center"
>
<Card className="flex flex-col items-center justify-center">
<UnknownAvatar />
<p className="text-xl">Stranger</p>
<p className="text mt-2">Find a player profile</p>
<SearchPlayer />
<div className="mb-6"></div>
</Card>
</Container>
</main>