From f969c6e5ca38d89aecc85084eba92797269ad32d Mon Sep 17 00:00:00 2001 From: John Doe Date: Sun, 10 Sep 2023 17:33:22 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=9B=A0=EF=B8=8F=20Implemented=20SectionOu?= =?UTF-8?q?rFeatures=20component=20=F0=9F=9A=80=20Added=20a=20new=20compon?= =?UTF-8?q?ent=20to=20display=20our=20features=20=F0=9F=96=BC=EF=B8=8F=20U?= =?UTF-8?q?tilized=20Next.js=20Image=20component=20for=20image=20handling?= =?UTF-8?q?=20=F0=9F=8E=89=20Ready=20to=20enhance=20the=20UI=20further=20?= =?UTF-8?q?=F0=9F=90=9B=20Fixed=20minor=20alignment=20issue?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/SectionOurFeatures.tsx | 74 +++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 src/components/SectionOurFeatures.tsx diff --git a/src/components/SectionOurFeatures.tsx b/src/components/SectionOurFeatures.tsx new file mode 100644 index 0000000..96dc104 --- /dev/null +++ b/src/components/SectionOurFeatures.tsx @@ -0,0 +1,74 @@ +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;