main
Last change
on this file since faff334 was 433e0c5, checked in by anastasovv <simon@…>, 2 years ago |
Added complaints, managing credits, and lost connection screens
|
-
Property mode
set to
100644
|
File size:
898 bytes
|
Rev | Line | |
---|
[87614a5] | 1 | import React from 'react'
|
---|
| 2 |
|
---|
| 3 | import Head from 'next/head'
|
---|
[9bd09b0] | 4 |
|
---|
| 5 | import BlackjackHeader from './BlackjackHeader'
|
---|
[87614a5] | 6 | import PlayButtons from '../../components/blackjack/PlayButtons'
|
---|
| 7 | import Cards from '../../components/blackjack/Cards'
|
---|
| 8 | import DisplayBet from '../../components/blackjack/DisplayBet'
|
---|
| 9 | import Loading from '../Loading'
|
---|
| 10 | import Alert from '../Alert'
|
---|
| 11 | import Notification from '../Notification'
|
---|
[433e0c5] | 12 | import LostConnection from '../LostConnection'
|
---|
[87614a5] | 13 |
|
---|
| 14 | const Blackjack = () => {
|
---|
| 15 | return (
|
---|
[9bd09b0] | 16 | <div className="app blackjackMainContainer" style={{backgroundImage: 'url("/images/blackjack-bg.png")', backgroundPosition: '0% 30%'}}>
|
---|
[87614a5] | 17 | <Head>
|
---|
| 18 | <title>Caessino - Blackjack</title>
|
---|
| 19 | </Head>
|
---|
| 20 |
|
---|
[64dc53b] | 21 | <BlackjackHeader/>
|
---|
[87614a5] | 22 |
|
---|
| 23 | <PlayButtons/>
|
---|
| 24 |
|
---|
| 25 | <Cards/>
|
---|
| 26 |
|
---|
| 27 | <DisplayBet/>
|
---|
| 28 |
|
---|
| 29 | <Loading/>
|
---|
| 30 |
|
---|
| 31 | <Alert/>
|
---|
| 32 |
|
---|
| 33 | <Notification/>
|
---|
[433e0c5] | 34 |
|
---|
| 35 | <LostConnection/>
|
---|
[87614a5] | 36 | </div>
|
---|
| 37 | )
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | export default Blackjack |
---|
Note:
See
TracBrowser
for help on using the repository browser.