Refactor UX to remove useless page

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-04-20 16:04:09 +04:00
parent a6c9b2f3a7
commit 465f43d359
8 changed files with 66 additions and 30 deletions

View File

@@ -16,7 +16,7 @@ import type { PropsWithChildren, ReactNode } from "react";
type Props = PropsWithChildren<{
title: ReactNode;
description?: string | null;
description?: ReactNode;
}>;
export function PageHeader({ title, description, children }: Props) {