import React, { FC } from "react"; import rightImgPng from "@/images/our-features.png"; import Image, { StaticImageData } from "next/image"; import Badge from "@/shared/Badge"; export interface SectionOurFeaturesProps { className?: string; rightImg?: StaticImageData; type?: "type1" | "type2"; } const SectionOurFeatures: FC = ({ className = "lg:py-14", rightImg = rightImgPng, type = "type1", }) => { return (
BENnefits

Happening cities

  • Cost-effective advertising With a free listing, you can advertise your rental with no upfront costs
  • Reach millions with Chisfis Millions of people are searching for unique places to stay around the world
  • Secure and simple A Holiday Lettings listing gives you a secure and easy way to take bookings and payments online
); }; export default SectionOurFeatures;