diff --git a/src/components/sections/FiveRoomHomesteadSection.tsx b/src/components/sections/FiveRoomHomesteadSection.tsx new file mode 100644 index 0000000..4891410 --- /dev/null +++ b/src/components/sections/FiveRoomHomesteadSection.tsx @@ -0,0 +1,82 @@ +import Image from 'next/image' +import { Card, CardHeader, CardTitle, CardContent, CardFooter } from '@/components/ui/Card' +import Button from '@/components/ui/Button' + +export default function FiveRoomHomesteadSection() { + const rooms = [ + { + name: 'The Gable Room', + desc: 'Four-poster bed and antique armoire overlooking the front garden and gable.', + image: 'https://images.pexels.com/photos/6287228/pexels-photo-6287228.jpeg?auto=compress&cs=tinysrgb&h=350', + price: 'R1,800', + }, + { + name: 'The Vineyard Room', + desc: 'French doors open onto a private stoep with vineyard views. Hand-painted dresser.', + image: 'https://images.pexels.com/photos/22937955/pexels-photo-22937955.jpeg?auto=compress&cs=tinysrgb&h=350', + price: 'R2,100', + }, + { + name: 'The Orchard Room', + desc: 'Lace curtains and a claw‑foot tub. Wake to the scent of peach blossoms.', + image: 'https://images.pexels.com/photos/6287228/pexels-photo-6287228.jpeg?auto=compress&cs=tinysrgb&h=350', + price: 'R2,300', + }, + { + name: 'The Garden Room', + desc: 'Yellowwood floors and a writing desk. Steps away from the herb garden.', + image: 'https://images.pexels.com/photos/32963319/pexels-photo-32963319.jpeg?auto=compress&cs=tinysrgb&h=350', + price: 'R1,950', + }, + { + name: 'The Homestead Suite', + desc: 'The largest room, with a sitting area, fireplace, and views over the dam.', + image: 'https://images.pexels.com/photos/5692285/pexels-photo-5692285.jpeg?auto=compress&cs=tinysrgb&h=350', + price: 'R2,800', + }, + ] + + return ( +
+
+ Franschhoek +

Five sanctuaries, each one a story.

+ +
+ {rooms.map((room) => ( + +
+ {room.name} +
+ + {room.name} + + +

{room.desc}

+

{room.price} / night

+
+ + + +
+ ))} +
+ + {/* Trust row */} +
+ Free Wi‑Fi + Farm breakfast included + Check‑in 14:00 · Check‑out 11:00 +
+
+
+ ) +}