Merge version_6_1781777582979 into main #7

Merged
bender merged 1 commits from version_6_1781777582979 into main 2026-06-18 10:14:39 +00:00

View File

@@ -1,38 +1,19 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
// Created by add_section_from_catalog (HeroBillboardCarousel).
import React from 'react';
import HeroBillboardTiltedCarousel from '@/components/sections/hero/HeroBillboardTiltedCarousel';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
import HeroBillboardCarousel from '@/components/sections/hero/HeroBillboardCarousel';
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBillboardTiltedCarousel
tag="Elevated Dining"
title="Fast Food. Reimagined."
description="Premium ingredients. Clean space. Unforgettable taste."
primaryButton={{
text: "View Menu", href: "#menu"}}
secondaryButton={{
text: "Order Now", href: "#order"}}
items={[
{
imageSrc: "http://img.b2bpic.net/free-photo/delicious-pizza-outdoors_23-2150900905.jpg"},
{
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235790.jpg"},
{
imageSrc: "http://img.b2bpic.net/free-photo/hamburger-burger-with-beef-tomato-pickled-cucumber-fried-bacon_2829-11184.jpg"},
{
imageSrc: "http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134276.jpg"},
{
imageSrc: "http://img.b2bpic.net/free-photo/fast-food-burgers-with-french-fries-cutlery_23-2148290593.jpg"},
{
imageSrc: "http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134261.jpg"},
]}
/>
</SectionErrorBoundary>
</div>
<div data-webild-section="hero" id="hero">
<HeroBillboardCarousel
items={[{"imageSrc":"http://img.b2bpic.net/free-photo/delicious-pizza-outdoors_23-2150900905.jpg"},{"imageSrc":"http://img.b2bpic.net/free-photo/high-angle-baking-delicious-pizza_23-2150235790.jpg"},{"imageSrc":"http://img.b2bpic.net/free-photo/hamburger-burger-with-beef-tomato-pickled-cucumber-fried-bacon_2829-11184.jpg"},{"imageSrc":"http://img.b2bpic.net/free-photo/side-view-chef-baking-delicious-pizza_23-2150134276.jpg"},{"imageSrc":"http://img.b2bpic.net/free-photo/fast-food-burgers-with-french-fries-cutlery_23-2148290593.jpg"},{"imageSrc":"http://img.b2bpic.net/free-photo/baking-delicious-pizza-with-wood-fired-oven_23-2150134261.jpg"}]}
primaryButton={{"href":"#menu","text":"View Menu"}}
tag="Elevated Dining"
secondaryButton={{"text":"Order Now","href":"#order"}}
description="Premium ingredients. Clean space. Unforgettable taste."
title="Fast Food. Reimagined."
/>
</div>
);
}