diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index cc9ad2c..0350a0d 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,22 +1,113 @@ -// 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 Card from "@/components/ui/Card"; +import Input from "@/components/ui/Input"; +import Label from "@/components/ui/Label"; +import { MapPin, Calendar as CalendarIcon, Clock } from "lucide-react"; -import React from 'react'; -import HeroBrand from '@/components/sections/hero/HeroBrand'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +const primaryButton = { + text: "Book Now", + href: "#contact" +}; +const secondaryButton = { + text: "View Fleet", + href: "#fleet" +}; -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 ( -
- - - +
+ + + +
+ ); +}; + +export default function HeroSection() { + return ( +
+ +
); }