13 lines
355 B
TypeScript
13 lines
355 B
TypeScript
import { SearchBar } from "@/components/search-bar"
|
|
|
|
export default function Home() {
|
|
return (
|
|
<div className="flex flex-col items-center min-h-screen">
|
|
<div className="mt-[20vh]">
|
|
<h1 className="text-4xl font-bold text-center">Hypixel Stats</h1>
|
|
</div>
|
|
<SearchBar />
|
|
</div>
|
|
)
|
|
}
|