diff --git a/src/components/sections/ReserveYourSuiteSection.tsx b/src/components/sections/ReserveYourSuiteSection.tsx new file mode 100644 index 0000000..9a7bdce --- /dev/null +++ b/src/components/sections/ReserveYourSuiteSection.tsx @@ -0,0 +1,63 @@ +'use client'; + +import { useState } from 'react'; +import Button from '@/components/ui/Button'; +import Input from '@/components/ui/Input'; +import Badge from '@/components/ui/Badge'; +import { Calendar, Check, Shield } from 'lucide-react'; +import Link from 'next/link'; + +export default function ReserveYourSuiteSection() { + const [checkIn, setCheckIn] = useState(''); + const [checkOut, setCheckOut] = useState(''); + + return ( +
+
+
+

+ Secure your Maasai Mara escape +

+

+ Best rate guarantee — cancel free up to 48 hours before check-in. +

+
+ +
+
+ setCheckIn(e.target.value)} + className="w-full" + /> + setCheckOut(e.target.value)} + className="w-full" + /> +
+ + + +
+ + Best Rate Guarantee + + + Free Cancellation + + + Instant Confirmation + +
+
+
+
+ ); +}