30 lines
860 B
JavaScript
30 lines
860 B
JavaScript
import { Button } from '@/components/Button'
|
|
import { Container } from '@/components/Container'
|
|
import { Logo } from '@/components/Logo'
|
|
|
|
|
|
export function CallToAction2() {
|
|
return (
|
|
<section
|
|
id="get-started-today"
|
|
className="relative overflow-hidden bg-transparent py-40 mt-4 mb-2"
|
|
>
|
|
<img
|
|
className="absolute left-1/2 top-1/2 max-w-none -translate-x-1/2 -translate-y-1/2"
|
|
src="./images/komombo.jpg"
|
|
alt=""
|
|
width={2347}
|
|
height={1244}
|
|
/>
|
|
<div className="absolute inset-0 bg-black opacity-50"></div>
|
|
<Container className="relative ">
|
|
<div className="mx-auto max-w-3xl text-center">
|
|
<div className="flex items-center justify-center">
|
|
<Logo className="h-16 w-auto opacity-100" />
|
|
</div>
|
|
</div>
|
|
</Container>
|
|
</section>
|
|
)
|
|
}
|