diff --git a/src/components/sections/UnhurriedBookingCTASection.tsx b/src/components/sections/UnhurriedBookingCTASection.tsx new file mode 100644 index 0000000..9ea6145 --- /dev/null +++ b/src/components/sections/UnhurriedBookingCTASection.tsx @@ -0,0 +1,43 @@ +'use client' + +import Image from 'next/image' +import Button from '@/components/ui/Button' +import { Phone } from 'lucide-react' + +export default function UnhurriedBookingCTASection() { + const whatsappNumber = '+27823456789' + const whatsappLink = `https://wa.me/${whatsappNumber.replace(/\+/g, '').replace(/\s/g, '')}` + + return ( +
+
+ Chalet veranda at dawn +
+
+

+ Ready to trade city noise for the call of a fish eagle? +

+

+ A direct booking with us means no middleman, no pressure. Just the bushveld, a cold drink on the stoep, and the fireflies. Chat to us directly. +

+ + + +
+
+ ) +}