mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-06-01 23:16:51 +00:00
16 lines
729 B
JavaScript
16 lines
729 B
JavaScript
const HeroWithFigure = () => {
|
|
return <div className="hero min-h-screen bg-base-200">
|
|
<div className="hero-content flex-col lg:flex-row">
|
|
{/* eslint-disable-next-line @next/next/no-img-element */}
|
|
<img src="/avatar.png" className="max-w-sm rounded-lg shadow-2xl" />
|
|
<div>
|
|
<h1 className="text-5xl font-bold">Box Office News!</h1>
|
|
<p className="py-6">Provident cupiditate voluptatem et in. Quaerat fugiat ut assumenda excepturi exercitationem quasi. In deleniti eaque aut repudiandae et a id nisi.</p>
|
|
<button className="btn btn-primary">Get Started</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
}
|
|
|
|
export default HeroWithFigure
|