diff --git a/src/app/(server-components)/SectionHero.tsx b/src/app/(server-components)/SectionHero.tsx new file mode 100644 index 0000000..5e43b05 --- /dev/null +++ b/src/app/(server-components)/SectionHero.tsx @@ -0,0 +1,41 @@ +import React, { FC } from "react"; +import imagePng from "@/images/hero-right.png"; +import HeroSearchForm from "../(client-components)/(HeroSearchForm)/HeroSearchForm"; +import Image from "next/image"; +import ButtonPrimary from "@/shared/ButtonPrimary"; + +export interface SectionHeroProps { + className?: string; +} + +const SectionHero: FC = ({ className = "" }) => { + return ( +
+
+
+

+ Hotel, car & experiences +

+ + Accompanying us, you have a trip full of experiences. With Chisfis, + booking accommodation, resort villas, hotels + + + Start your search + +
+
+ hero +
+
+ +
+ +
+
+ ); +}; + +export default SectionHero;