Switch to version 1: remove src/pages/HomePage/sections/Hero.tsx

This commit is contained in:
2026-06-08 10:05:48 +00:00
parent d5f98a4304
commit a42e579e26

View File

@@ -1,24 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "hero" section.
import React from 'react';
import HeroBrand from '@/components/sections/hero/HeroBrand';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function HeroSection(): React.JSX.Element {
return (
<div id="hero" data-section="hero">
<SectionErrorBoundary name="hero">
<HeroBrand
brand="Freshly Baked Goodness, Delivered to Your Door"
description="Artisan pastries, custom cakes, and daily favorites made with premium ingredients. Order online for pickup or delivery today."
primaryButton={{
text: "Order Now", href: "#contact"}}
secondaryButton={{
text: "View Our Menu", href: "#products"}}
imageSrc="http://img.b2bpic.net/free-photo/overhead-view-baked-chocolate-cakes-with-spoon-clothes-wooden-backdrop_23-2148087027.jpg"
/>
</SectionErrorBoundary>
</div>
);
}