export default function HomepageWireframe() { return (
{/* Header */}

Patty's Bakery

{/* Hero Section */}

Freshly Baked, Made With Love for 20 Years

{/* Quick Links */}
{[ { title: "How We Bake", emoji: "👩‍🍳" }, { title: "Customer Favorites", emoji: "⭐" }, { title: "Behind the Scenes", emoji: "🎉" }, ].map((item) => (
{item.emoji}

{item.title}

))}
{/* About Us Preview */}
About Bakery

About Patty’s Bakery

Family-owned, serving Metro Phoenix for 20 years. We bring smiles to our community with fresh baked goods made daily.

{/* Menu Highlights */}

Featured Favorites

{["Apple Dumplings", "Hot Fudge Brownies", "Carrot Cake"].map( (item) => (
{item} Video

{item}

) )}
{/* Testimonials */}

What Our Customers Are Saying

{[1, 2, 3].map((t) => (
Testimonial Video {t}

“Amazing service and delicious pastries!”

))}
{/* Specials */}

This Week’s Specials

Promo Video
{/* Call-to-Action Banner */}

We’d Love to See You in Person

Invite Video
{/* Footer */}

📍 123 Main Street, Phoenix, AZ

📞 (602) 935-1983

✉️ info@pattysbakery.com

© 2025 Patty’s Bakery. All rights reserved.

); }