diff --git a/src/app/(server-components)/SectionHero2.tsx b/src/app/(server-components)/SectionHero2.tsx new file mode 100644 index 0000000..ac1e19d --- /dev/null +++ b/src/app/(server-components)/SectionHero2.tsx @@ -0,0 +1,38 @@ +import React, { FC } from "react"; +import imagePng from "@/images/hero-right-3.png"; +import Image from "next/image"; +import HeroRealEstateSearchForm from "../(client-components)/(HeroSearchForm)/(real-estate-search-form)/HeroRealEstateSearchForm"; + +export interface SectionHero2Props { + className?: string; + children?: React.ReactNode; +} + +const SectionHero2: FC = ({ className = "", children }) => { + return ( +
+
+ hero +
+
+
+
+
+ {children ? ( + children + ) : ( +

+ Find Your Best
Smart Real Estate +

+ )} +
+
+
+ +
+
+
+ ); +}; + +export default SectionHero2;