website/app/components/Title.tsx
2024-10-30 09:53:31 +01:00

8 lines
191 B
TypeScript

export function Title({ children }: React.PropsWithChildren) {
return (
<div className="mt-5">
<h1 className="text-[#ffff00] text-2xl font-bold">{children}</h1>
</div>
);
}