source: pages/games/poker.js@ 285c3cc

main
Last change on this file since 285c3cc was 87614a5, checked in by anastasovv <simon@…>, 2 years ago

Blackjack prototype

  • Property mode set to 100644
File size: 428 bytes
Line 
1import React from 'react'
2
3import Header from '../../components/Header'
4import FullwidthText from '../../components/FullwidthText'
5
6import Head from 'next/head'
7
8const poker = () => {
9 return (
10 <div className="app">
11 <Head>
12 <title>Caessino - Poker</title>
13 </Head>
14
15 <Header main="false"/>
16 <FullwidthText title="Poker" subtitle="Under Construction..."/>
17 </div>
18 )
19}
20
21export default poker
Note: See TracBrowser for help on using the repository browser.