Files
imphnen-frontend-service/apps/backoffice/src/app/(protected)/hackathon-submissions/page.tsx
T
Hafid Nur f5ad55235c feat(backoffice): create a boilerplate page for Hackathon dashboard
- Create an empty page for Hackathon dashboard
- Comment out and hide the existing backoffice sidebar
2025-11-30 12:29:58 +07:00

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;