8 lines
164 B
JavaScript
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>
|
|
)
|
|
}
|