table styling, other stuff

This commit is contained in:
2024-12-14 07:33:36 -05:00
parent 8896229fac
commit a1060ec9e5
7 changed files with 179 additions and 7 deletions

View File

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