mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 13:13:25 +00:00
26 lines
476 B
TypeScript
26 lines
476 B
TypeScript
import React from 'react';
|
|
|
|
const EventPage = () => {
|
|
return (
|
|
// <>Header</>
|
|
// <EventDescription>
|
|
// <Footer>
|
|
<div
|
|
className="relative bg-black-100 flex
|
|
justify-center items-center, flex-col overflow-hidden
|
|
mx-auto sm:px-10 px-5"
|
|
>
|
|
<div className="max-w-7xl w-full"></div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EventPage;
|
|
|
|
// profile page
|
|
|
|
// EventForm to Register Events
|
|
// on submit form
|
|
// fix ui to match ticketchain initial ui
|
|
//
|