summaryrefslogtreecommitdiff
path: root/src/pages/Home.tsx
blob: 1f974e74dc74d41e45183e7f20c614014ec5813f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { Header, Content, Button } from '../components';

const Home = () => {
	return (
		<>
			<Header title="DataNodes">
				<Button kind="ghost" href="/play">Try Now</Button>
				<Button kind="ghost" href="/login">Log In</Button>
				<Button kind="ghost" href="/signup">Sign Up</Button>
			</Header>
			<Content>
				<p><a href="/play">Try Now</a></p>
				<p><a href="/signup">Create Account</a></p>
			</Content>
		</>
	);
};

export default Home;