[64dc53b] | 1 | import Head from 'next/head'
|
---|
| 2 |
|
---|
[87614a5] | 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'
|
---|
[6568bde] | 13 |
|
---|
| 14 | export default function Home() {
|
---|
| 15 | return (
|
---|
[87614a5] | 16 | <div className="app" style={{backgroundImage: 'url("/images/bg.png")'}}>
|
---|
[6568bde] | 17 | <Head>
|
---|
[64dc53b] | 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" />
|
---|
[9bd09b0] | 23 | <meta name="copyright" content="© ESS CORP 2022" />
|
---|
[64dc53b] | 24 |
|
---|
[87614a5] | 25 | <title>Caessino</title>
|
---|
[6568bde] | 26 | </Head>
|
---|
[87614a5] | 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>
|
---|
[6568bde] | 37 |
|
---|
[87614a5] | 38 | <Loading/>
|
---|
[6568bde] | 39 |
|
---|
[87614a5] | 40 | <RegisterScreen/>
|
---|
[6568bde] | 41 |
|
---|
[87614a5] | 42 | <LoginScreen/>
|
---|
[6568bde] | 43 |
|
---|
[87614a5] | 44 | <Alert/>
|
---|
[6568bde] | 45 |
|
---|
[87614a5] | 46 | <Notification/>
|
---|
[6568bde] | 47 |
|
---|
[87614a5] | 48 | <Stats/>
|
---|
[6568bde] | 49 |
|
---|
[87614a5] | 50 | <ManageCredits/>
|
---|
[6568bde] | 51 | </div>
|
---|
| 52 | )
|
---|
| 53 | }
|
---|