1 | import Head from 'next/head'
|
---|
2 |
|
---|
3 | import Header from '../components/Header'
|
---|
4 | import FullwidthText from '../components/FullwidthText'
|
---|
5 | import GameCircle from '../components/GameCircle'
|
---|
6 | import Loading from '../components/Loading'
|
---|
7 | import RegisterScreen from '../components/RegisterScreen'
|
---|
8 | import LoginScreen from '../components/LoginScreen'
|
---|
9 | import Alert from '../components/Alert'
|
---|
10 | import Notification from '../components/Notification'
|
---|
11 | import Stats from '../components/Stats'
|
---|
12 | import ManageCredits from '../components/ManageCredits'
|
---|
13 |
|
---|
14 | export default function Home() {
|
---|
15 | return (
|
---|
16 | <div className="app" style={{backgroundImage: 'url("/images/bg.png")'}}>
|
---|
17 | <Head>
|
---|
18 | <meta charSet="utf-8"/>
|
---|
19 | <meta name="description" content="Enjoy your stay at Caessino (The best E-Casino out there!). Play Blackjack, Roulette or Poker and win huge prizes!"/>
|
---|
20 | <meta name="keywords" content="caessino, e-casino, casino, blackjack, roulette, poker"/>
|
---|
21 |
|
---|
22 | <meta name="author" content="ESS" />
|
---|
23 | <meta name="copyright" content="ESS CORP" />
|
---|
24 |
|
---|
25 | <title>Caessino</title>
|
---|
26 | </Head>
|
---|
27 |
|
---|
28 | <Header/>
|
---|
29 |
|
---|
30 | <FullwidthText title="Welcome to Caessino" subtitle="Choose Your Game"/>
|
---|
31 |
|
---|
32 | <div className="gameCircles">
|
---|
33 | <GameCircle src={"/images/blackjack.png"} text="Play Blackjack" routeTo="/games/blackjack" game="Blackjack"/>
|
---|
34 | <GameCircle src={"/images/roulette.png"} text="Play Roulette" routeTo="/games/roulette" game="Roulette"/>
|
---|
35 | <GameCircle src={"/images/poker.png"} text="Play Poker" routeTo="/games/poker" game="Poker"/>
|
---|
36 | </div>
|
---|
37 |
|
---|
38 | <Loading/>
|
---|
39 |
|
---|
40 | <RegisterScreen/>
|
---|
41 |
|
---|
42 | <LoginScreen/>
|
---|
43 |
|
---|
44 | <Alert/>
|
---|
45 |
|
---|
46 | <Notification/>
|
---|
47 |
|
---|
48 | <Stats/>
|
---|
49 |
|
---|
50 | <ManageCredits/>
|
---|
51 | </div>
|
---|
52 | )
|
---|
53 | }
|
---|