18 lines
618 B
TypeScript
18 lines
618 B
TypeScript
import { FC, ReactElement } from 'react';
|
|||
|
|
|
||
|
|
export const HackathonUsersPage: 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 Users</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 users. Add table, filters, and forms here.</p>
|
||
|
|
</section>
|
||
|
|
</main>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default HackathonUsersPage;
|