2024-08-05 13:44:30 +09:00

8 lines
186 B
JavaScript

export default function Hero(props) {
return (
<div className="pt-48 flex justify-center">
<h1 className="text-4xl archivo-black-regular">{props.title}</h1>
</div>
)
}