idle_moloch/app/src/pages/index.tsx
Mitja Belak ab43dc31a4
Some checks are pending
CI / Foundry project (push) Waiting to run
App now credits the team in this cohort not mico
2024-10-24 18:22:51 +02:00

36 lines
1004 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 frens at 😈 Slay the Moloch team for Cohort VII of <a href="https://www.raidguild.org/" target="blank">RaidGuild</a>
</footer>
</div>
);
};
export default Home;