blob: 43f595550c8472d63f7159a1208a27d2c76bb962 (
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>
<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;
|