This commit is contained in:
2025-08-26 21:22:19 +02:00
parent 53e44cb092
commit e3c2e0d361
3 changed files with 39 additions and 0 deletions

BIN
public/images/cta_bg.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 564 KiB

View File

@@ -21,6 +21,7 @@ import CnnVideo from '@/components/CNNVIDEO'
import { CallToAction4 } from '@/components/CallToAction4'
import { Logos } from '@/components/Logos'
import { Hero2 } from '@/components/Hero2'
import { Cta } from '@/components/CTA'
export default function Home() {
@@ -30,6 +31,7 @@ export default function Home() {
<main>
<Hero2 />
<Logos />
<Cta />
<CallToAction />
<Boat />
<CallToAction4 />

37
src/components/Cta.jsx Normal file
View File

@@ -0,0 +1,37 @@
import { Button } from '@/components/Button'
import { Container } from '@/components/Container'
import { Logo } from '@/components/Logo'
import { H2, PS, H3, H4 } from '@/components/text'
export function Cta() {
return (
<section
id="about"
className="relative overflow-hidden bg-cover bg-center bg-no-repeat py-24"
style={{
backgroundImage: 'url(/images/cta_bg.jpg)',
}}
>
{/* Background overlay */}
<div className="absolute inset-0 "></div>
<Container className="relative z-10">
<div className="mx-auto max-w-3xl text-center text-white">
<H3 className="!text-white mb-6">
VEDA provides an unparalleled cruise experience on the Nile, blending authenticity with sophistication. Enjoy private journeys featuring organic cuisine, hollistic activities, and a dedicated, warm-hearted crew.
</H3>
<H3 className="!text-gold-500">
Discover a cruise like no other with us on the Nile.
</H3>
<br/>
<Button className="mt-6" href="/story" variant="link" color="darkgr">
Read Our Story
</Button>
</div>
</Container>
</section>
)
}