first commit

This commit is contained in:
Lee
2023-10-19 05:21:35 +01:00
parent 4cfe8463ee
commit 6acf6e8635
20 changed files with 3089 additions and 143 deletions

45
src/app/search/page.tsx Normal file
View File

@ -0,0 +1,45 @@
import Avatar from "@/components/Avatar";
import Container from "@/components/Container";
import { MagnifyingGlassIcon } from "@heroicons/react/24/solid";
import { Metadata } from "next";
export const metadata: Metadata = {
title: "Search",
};
export default function Home() {
return (
<main>
<Container>
<div className="mt-2 bg-neutral-800 w-full flex flex-col items-center justify-center rounded-sm">
<Avatar
className="m-6"
label="Player Avatar"
url="https://cdn.fascinated.cc/yb4fgdc1.jpg"
/>
<p className="text-xl">Stranger</p>
<p className="text mt-2">Find a player profile</p>
<form className="mt-6 flex gap-2">
<input
className="bg-transparent text-xs outline-none min-w-[14rem] border-b"
type="text"
placeholder="Enter a name or ScoreSaber profile..."
/>
<button className="bg-blue-600 hover:opacity-80 transition-all transform-gpu rounded-md p-1">
<MagnifyingGlassIcon
className="font-black"
width={18}
height={18}
/>
</button>
</form>
<div className="mb-6"></div>
</div>
</Container>
</main>
);
}