diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 28d1c72..00cd90f 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,28 +1,83 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" section. +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 ScrollReveal from "@/components/ui/ScrollReveal"; +import LoopCarousel from "@/components/ui/LoopCarousel"; -import React from 'react'; -import HeroBillboardBrand from '@/components/sections/hero/HeroBillboardBrand'; -import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary"; +type HeroBillboardBrandProps = { + brand: string; + description: string; + primaryButton: { text: string; href: string }; + secondaryButton: { text: string; href: string }; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); -export default function HeroSection(): React.JSX.Element { +const HeroInline = () => { return ( -
- - - +
+ +
+
+ {"Taste the Freshness: Your Daily Slice of Joy Awaits"} + + + + +
+ + + + + +
+

+ Trusted by companies we work with +

+
+ + {[ + "https://upload.wikimedia.org/wikipedia/commons/a/a9/Amazon_logo.svg", + "https://upload.wikimedia.org/wikipedia/commons/2/2f/Google_2015_logo.svg", + "https://upload.wikimedia.org/wikipedia/commons/5/51/IBM_logo.svg", + "https://upload.wikimedia.org/wikipedia/commons/4/44/Microsoft_logo.svg", + "https://upload.wikimedia.org/wikipedia/commons/f/fa/Apple_logo_black.svg" + ].map((logo, i) => ( +
+ Company Logo +
+ ))} +
+
+
+
+ ); +}; + +export default function HeroSection() { + return ( +
+ +
); }