2024-06-17 14:29:49 +09:00

8 lines
164 B
JavaScript

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