You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
796 B
20 lines
796 B
import Image from 'next/image'
|
|
|
|
export default function Home() {
|
|
|
|
return (
|
|
<main className="flex min-h-screen flex-col items-center justify-between p-24">
|
|
<div className="hero min-h-screen bg-base-200">
|
|
<div className="hero-content flex-col lg:flex-row">
|
|
<Image src="/logo.png" width={"320"} height={"320"} className="max-w-sm rounded-lg shadow-2xl" alt={'Logotipo Sistemaagil'} />
|
|
<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>
|
|
</main>
|
|
)
|
|
}
|