adding to prev commit

This commit is contained in:
ashprit
2024-10-27 00:53:22 +01:00
parent 55b90fd27d
commit c5e8aa67f5
4 changed files with 17 additions and 1 deletions

View File

@@ -2,6 +2,8 @@
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"@next/next/no-img-element": "off",
"@typescript-eslint/no-explicit-any": "off"
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-object-type": "off",
"@typescript-eslint/no-unused-vars": "off"
}
}

View File

@@ -16,3 +16,10 @@ const EventPage = () => {
};
export default EventPage;
// profile page
// EventForm to Register Events
// on submit form
// fix ui to match ticketchain initial ui
//

View File

@@ -0,0 +1,7 @@
import React from 'react';
const ProfilePage = () => {
return <div>ProfilePage</div>;
};
export default ProfilePage;