summaryrefslogtreecommitdiffhomepage
path: root/react-frontend/src/pages/Home.tsx
blob: 2f15dd307e7737f8293d108a9ac44d4a6bb79808 (plain)
1
2
3
4
5
6
7
8
9
10

export default function Home() {
	return(
		<>
			<div className="flex justify-center p-4">
				<h1 className="font-title text-6xl">Welcome to Game Holster</h1>
			</div>
		</>
	);
}