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

This commit is contained in:
2026-06-07 19:01:45 +00:00
parent 5939f86125
commit 795c8bc160

View File

@@ -1,131 +0,0 @@
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "menu" section.
import React from 'react';
import FeaturesAttributeCards from '@/components/sections/features/FeaturesAttributeCards';
import { Award, Clock, DollarSign, Droplet, Flame, Pizza, Star, Wheat } from "lucide-react";
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function MenuSection(): React.JSX.Element {
return (
<div id="menu" data-section="menu">
<SectionErrorBoundary name="menu">
<FeaturesAttributeCards
tag="Our Delicious Selection"
title="Irresistible Pizzas for Every Craving"
description="Explore our diverse menu, from classic favorites to unique San Francisco-inspired creations. Each pizza is made with love and attention to detail, promising an unforgettable taste experience."
items={[
{
title: "The Golden Gate Pepperoni",
tags: "Classic, Meat",
badge: "Popular",
details: [
{
icon: DollarSign,
label: "Price",
value: "$24.99",
},
{
icon: Clock,
label: "Cook Time",
value: "15 min",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-baked-pineapple-papaya-pizza_23-2148753778.jpg",
},
{
title: "Alcatraz Margherita",
tags: "Vegetarian, Classic",
badge: "Signature",
details: [
{
icon: DollarSign,
label: "Price",
value: "$22.99",
},
{
icon: Clock,
label: "Cook Time",
value: "12 min",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/top-view-delicious-pizza-with-fresh-cheese_23-2150096954.jpg",
},
{
title: "Fisherman's Wharf Veggie",
tags: "Vegetarian, Fresh",
badge: "Healthy",
details: [
{
icon: DollarSign,
label: "Price",
value: "$26.99",
},
{
icon: Clock,
label: "Cook Time",
value: "18 min",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/pizza-with-fried-sausage-bell-pepper_141793-345.jpg",
},
{
title: "Bay Breeze BBQ Chicken",
tags: "Chicken, California",
badge: "New",
details: [
{
icon: DollarSign,
label: "Price",
value: "$28.99",
},
{
icon: Clock,
label: "Cook Time",
value: "17 min",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/april-fools-day-still-life-with-paper-pizza_23-2151358301.jpg",
},
{
title: "Sourdough Supreme",
tags: "Meat, Veggies",
badge: "Big One",
details: [
{
icon: DollarSign,
label: "Price",
value: "$29.99",
},
{
icon: Clock,
label: "Cook Time",
value: "20 min",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/pizza-table-green-color_58702-1317.jpg",
},
{
title: "Chef's Daily Special",
tags: "Seasonal, Unique",
badge: "Limited",
details: [
{
icon: DollarSign,
label: "Price",
value: "Varies",
},
{
icon: Clock,
label: "Cook Time",
value: "20 min",
},
],
imageSrc: "http://img.b2bpic.net/free-photo/chef-white-uniform-prepare-pizzaa_1157-27034.jpg",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}