freego_api/ui/pages/index.tsx
fry 0339acaaba Add initial api and docker files (#1)
Add the basic setup files for a nextjs interface. Need to set up the board and all that. Should be able to get going with `docker-compose up ui` then you'll see a webpage that's just an input on localhost:3000

Co-authored-by: David Frymoyer <david.frymoyer@gmail.com>
Reviewed-on: #1
Co-authored-by: fry <david.frymoyer@gmail.com>
Co-committed-by: fry <david.frymoyer@gmail.com>
2022-03-05 09:57:20 -05:00

19 lines
391 B
TypeScript

import type { NextPage } from 'next'
import Head from 'next/head'
import Image from 'next/image'
import Board from '../components/board'
import styles from '../styles/Home.module.css'
const Home: NextPage = () => (
<>
<Head>
<title>Free Go Game</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
<Board />
</main>
</>
)
export default Home