Files
www_veda_2025/src/components/CallToAction.jsx
2025-08-25 16:36:58 +02:00

27 lines
949 B
JavaScript

import { Button } from '@/components/Button'
import { Container } from '@/components/Container'
import { Logo } from '@/components/Logo'
export function CallToAction() {
return (
<section
id="about"
className="relative overflow-hidden bg-transparent py-16"
>
<Container className="relative">
<div className="mx-auto max-w-3xl text-center">
<h2 className="lg:text-2xl font-light text-xl tracking-tight text-bg-darkbrown pt-4 lg:pt-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.
</h2>
<p className="mt-4 text-lg lg:text-xl italic tracking-tight text-gold-900 pb-6">
Discover a cruise like no other with us on the Nile.
</p>
</div>
</Container>
</section>
)
}