1
0
forked from mico/idle_moloch
idle_moloch/app/src/pages/index.tsx

36 lines
895 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { ConnectButton } from '@rainbow-me/rainbowkit';
import type { NextPage } from 'next';
import Head from 'next/head';
import styles from '../styles/Home.module.css';
import Header from '../components/Header';
import Scene from '../components/Scene';
const Home: NextPage = () => {
return (
<div className={styles.container}>
<Head>
<title>Slay The Moloch</title>
<meta
content="Slay the moloch, earn shiny GELD"
name="Slay the moloch, earn shiny GELD"
/>
<link href="/favicon.ico" rel="icon" />
</Head>
<main className={styles.main}>
<div className={styles.connect}>
<ConnectButton />
</div>
<Header />
<Scene />
</main>
<footer className={styles.footer}>
Made with by your fren mic0
</footer>
</div>
);
};
export default Home;