- Create an empty page for Hackathon dashboard - Comment out and hide the existing backoffice sidebar
18 lines
653 B
TypeScript
18 lines
653 B
TypeScript
import { FC, ReactElement } from 'react';
|
|
|
|
export const HackathonSubmissionsPage: FC = (): ReactElement => {
|
|
return (
|
|
<main className="w-full px-12 py-10 flex flex-col gap-8">
|
|
<header className="bg-white py-4 px-8 rounded-lg shadow p-4">
|
|
<h1 className="text-p2 font-semibold">Hackathon Submissions</h1>
|
|
</header>
|
|
|
|
<section className="bg-white rounded-lg shadow-sm p-8 border border-neutral-100">
|
|
<p className="text-label1 text-neutral-600">Boilerplate page for managing submissions. Add table, filters, and review workspace here.</p>
|
|
</section>
|
|
</main>
|
|
);
|
|
};
|
|
|
|
export default HackathonSubmissionsPage;
|