Files
www_veda_2025/src/components/CallToAction.jsx
2025-08-26 18:52:56 +02:00

32 lines
991 B
JavaScript

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 CallToAction() {
return (
<section
id="about"
className="relative overflow-hidden bg-transparent py-12"
>
<Container className="relative">
<div className="mx-auto max-w-3xl text-center">
<H3>
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="">
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>
)
}