import React, { FC } from "react"; import rightImgDemo from "@/images/BecomeAnAuthorImg.png"; import ButtonPrimary from "@/shared/ButtonPrimary"; import Logo from "@/shared/Logo"; import Image from "next/image"; export interface SectionBecomeAnAuthorProps { className?: string; rightImg?: string; } const SectionBecomeAnAuthor: FC = ({ className = "", rightImg = rightImgDemo, }) => { return (

Why did you choose us?

Accompanying us, you have a trip full of experiences. With Chisfis, booking accommodation, resort villas, hotels, private houses, apartments... becomes fast, convenient and easy. Become an author
); }; export default SectionBecomeAnAuthor;