import React from 'react'; import Link from 'next/link'; import * as Icon from 'react-feather'; import NumberFormat from 'react-number-format'; const MainBanner = function ({ backend, kamar, ...props }) { const kamarContent = kamar.map((data) => { return (
image

{data.namaKamar}

Booking Now
) }) return (

Catania Hotel & Resort

Catania Bangau is home to 5 guestrooms. All are tastefully furnished, and many even provide such comforts as towels, closet, internet access – wireless (complimentary), air conditioning, desk. The property's host of recreational offerings ensures you have plenty to do during your stay. Enjoy a great location and services to match at Catania Bangau.

Get Started
{kamarContent}
) } export default MainBanner;