brawlset/app/app/faq/page.tsx

12 lines
294 B
TypeScript

export default function Home() {
return (
<>
<div className="flex flex-col items-center mt-32">
<div className="flex flex-col items-center w-full">
<h1 className="text-3xl">Foire Aux Questions</h1>
<h2>WIP</h2>
</div>
</div>
</>
);
}