From b0291e03eb3c656a646e5bc32601598cafe7aaae Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 14 Jul 2026 18:35:19 +0000 Subject: [PATCH] Deploy --- .../sections/DirectBookingCTASection.tsx | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/components/sections/DirectBookingCTASection.tsx diff --git a/src/components/sections/DirectBookingCTASection.tsx b/src/components/sections/DirectBookingCTASection.tsx new file mode 100644 index 0000000..083fe9d --- /dev/null +++ b/src/components/sections/DirectBookingCTASection.tsx @@ -0,0 +1,48 @@ +'use client' + +import Link from 'next/link' + +const CURRENCY_SYMBOLS: Record = { zar: 'R', usd: '$', eur: '€', gbp: '£', kes: 'KSh', ngn: '₦', ghs: '₵' } + +const formatPrice = (amount: number, code?: string) => { + const sym = CURRENCY_SYMBOLS[(code ?? '').toLowerCase()] ?? (code?.toUpperCase() ?? '') + return `${sym}${(amount / 100).toFixed(2)}` +} + +export default function DirectBookingCTASection() { + return ( +
+ {/* subtle background texture overlay */} +
+
+ {/* Eyebrow with accent rules */} +
+ + Book Direct + +
+ {/* Headline: benefit, not name */} +

+ Reserve Your Sanctuary +

+

+ The best rates and most personal touches await when you book direct. +

+ {/* CTA Button */} +
+ + Reserve Your Sanctuary + +
+ {/* Subtle availability cue */} +

+ Only 2 suites remaining for February — secure your stay +

+
+
+ ) +} \ No newline at end of file