added pagehero

This commit is contained in:
2024-12-12 10:09:32 -05:00
parent 67cba8ca10
commit 94772623cd
5 changed files with 73 additions and 14 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
interface PageHeroProps {
title: string;
}
export default function PageHero({ title }: PageHeroProps) {
return (
<div className="mb-6 bg-slate-700 text-center py-10">
<h1 className="text-2xl uppercase font-bold">{title}</h1>
</div>
);
}