adding react components without logic

This commit is contained in:
ashprit
2024-10-25 23:43:10 +01:00
parent 3c21c2ebc5
commit 44098c8691
19 changed files with 1946 additions and 877 deletions

18
components/EventPage.tsx Normal file
View File

@@ -0,0 +1,18 @@
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;