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

25 lines
786 B
JavaScript

import { Container } from '@/components/Container'
import { H2,H3, P } from '@/components/text'
export function CallToAction4() {
return (
<section
id="about"
className="relative overflow-hidden bg-transparent pt-24 pb-12"
>
<Container className="relative">
<div className="mx-auto max-w-6xl text-center">
<H2 className="mb-4">
Transformative Programs on the Nile
</H2>
<P className="mb-6">
From intimate community gatherings to professional retreats, VEDA offers transformative programs on the Nile. Each space is thoughtfully designed to foster connection, creativity, and personal growth in an inspiring riverside setting.
</P>
</div>
</Container>
</section>
)
}