update
This commit is contained in:
24
src/components/Hero/Hero.tsx
Normal file
24
src/components/Hero/Hero.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
import React from 'react'
|
||||
|
||||
const Hero = () => {
|
||||
return (
|
||||
<div className="hero bg-base-200">
|
||||
<div className="hero-content flex-col lg:flex-row">
|
||||
<img
|
||||
src="https://img.daisyui.com/images/stock/photo-1635805737707-575885ab0820.webp"
|
||||
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 Hero
|
||||
Reference in New Issue
Block a user