28 lines
690 B
TypeScript
28 lines
690 B
TypeScript
import { usePrivy } from "@privy-io/react-auth";
|
|
import Head from "next/head";
|
|
import { useRouter } from "next/router";
|
|
import { SetStateAction, useEffect, useState } from "react";
|
|
|
|
export default function BuyTickets() {
|
|
|
|
|
|
return (
|
|
<>
|
|
<Head>
|
|
<title>Buy MHUNT Tickets</title>
|
|
</Head>
|
|
<div className="bg-black h-screen text-white">
|
|
<div className="flex justify-center items-center h-full flex-col">
|
|
<div className="rounded-xl bg-gray-900 p-20">
|
|
<p className="text-3xl pb-10">Purchase Tickets</p>
|
|
<p>Enter your unique username</p>
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|