mirror of
https://github.com/logos-messaging/examples.waku.org.git
synced 2026-01-02 12:53:08 +00:00
23 lines
540 B
JavaScript
23 lines
540 B
JavaScript
import Head from 'next/head'
|
|
import Hero from '@/components/Hero'
|
|
import Header from '@/components/Header'
|
|
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Tic Tac Toe</title>
|
|
<meta name="description" content="Tic Tac Toe game created with Waku" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</Head>
|
|
<main className='bg-black h-screen'>
|
|
<Header />
|
|
<Hero />
|
|
</main>
|
|
</>
|
|
)
|
|
}
|