From aaf1fbbc2bfffc58bd759687018819b609fd9c00 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 16:06:30 +0000 Subject: [PATCH] Bob AI: rearrange hero layout to put text above image --- src/pages/HomePage/sections/Hero.tsx | 88 +++++++++++++++++++++------- 1 file changed, 66 insertions(+), 22 deletions(-) diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 5819d2d..74bf3c4 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,28 +1,72 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import AutoFillText from "@/components/ui/AutoFillText"; -import React from 'react'; -import HeroBrand from '@/components/sections/hero/HeroBrand'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const primaryButton = { + text: "Reserve Your Suite", + href: "#pricing" +}; +const secondaryButton = { + text: "View Gallery", + href: "#about" +}; -export default function HeroSection(): React.JSX.Element { +type HeroBrandProps = { + brand: string; + description: string; + primaryButton: { text: string; href: string }; + secondaryButton: { text: string; href: string }; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +const HeroInline = () => { return ( -
- - - +
+ + +
+
+
+ + +
+
+
+
+
+ + {"Grand Luxury Hotel"} +
+ +
+ +
+
+ ); +}; + +export default function HeroSection() { + return ( +
+ +
); } -- 2.49.1