This commit is contained in:
2024-12-13 09:52:40 -05:00
parent 468aa9d292
commit 1a868180ca

View File

@@ -7,7 +7,7 @@ interface PageHeroProps {
export default function PageHero({ title }: PageHeroProps) { export default function PageHero({ title }: PageHeroProps) {
return ( return (
<div className="mb-6 bg-slate-700 text-center py-10"> <div className="mb-6 bg-slate-700 text-center py-10">
<h1 className="text-2xl uppercase font-bold">{title}</h1> <h1 className="text-2xl uppercase text-white font-bold">{title}</h1>
</div> </div>
); );
} }