diff --git a/src/components/SectionBecomeAnAuthor.tsx b/src/components/SectionBecomeAnAuthor.tsx new file mode 100644 index 0000000..24cf52c --- /dev/null +++ b/src/components/SectionBecomeAnAuthor.tsx @@ -0,0 +1,42 @@ +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;