This commit is contained in:
2025-08-22 18:45:01 +02:00
parent 802d47b813
commit 699e3a580e
5 changed files with 90 additions and 49 deletions

View File

@@ -0,0 +1,24 @@
import { Container } from '@/components/Container'
import { H3, P } from '@/components/text'
export function CallToAction4() {
return (
<section
id="about"
className="relative overflow-hidden bg-bg-sand pt-16 pb-12"
>
<Container className="relative">
<div className="mx-auto max-w-6xl text-center">
<H3 className="mb-6">
Transformative Programs on the Nile
</H3>
<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>
)
}