diff --git a/src/app/(server-components)/SectionHero3.tsx b/src/app/(server-components)/SectionHero3.tsx new file mode 100644 index 0000000..cf64c8e --- /dev/null +++ b/src/app/(server-components)/SectionHero3.tsx @@ -0,0 +1,42 @@ +import React, { FC } from "react"; +import imagePng from "@/images/travelhero2.png"; +import Image from "next/image"; +import ButtonPrimary from "@/shared/ButtonPrimary"; + +export interface SectionHero3Props { + className?: string; +} + +const SectionHero3: FC = ({ className = "" }) => { + return ( +
+
+ + Booking tax-free from Chis. platform + +

+ New generation
of booking +

+ + Keep calm & travel on + +
+
+ hero +
+
+ ); +}; + +export default SectionHero3;