Files
www_veda_2025/src/components/CallToAction2.jsx
2025-08-21 19:05:20 +02:00

30 lines
879 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/background-call-to-action2.png"
alt=""
width={2347}
height={1244}
/>
<div className="absolute inset-0 bg-black opacity-20"></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>
)
}