Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #2.
This commit is contained in:
178
src/app/page.tsx
178
src/app/page.tsx
@@ -29,22 +29,10 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "featured",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "Menu", id: "featured" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Pudge Bros. Pizza"
|
||||
/>
|
||||
@@ -55,16 +43,10 @@ export default function LandingPage() {
|
||||
logoText="DENVER’S MOST WANTED SLICE"
|
||||
description="New York-style pizza, wings, calzones, and game-day energy in the heart of DTC. Big Slices. Bigger Energy."
|
||||
buttons={[
|
||||
{
|
||||
text: "ORDER NOW",
|
||||
href: "#featured",
|
||||
},
|
||||
{
|
||||
text: "VIEW MENU",
|
||||
href: "#featured",
|
||||
},
|
||||
{ text: "ORDER NOW", href: "#featured" },
|
||||
{ text: "VIEW MENU", href: "#featured" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-woman-hand-put-topping-homemade-pizza_1150-4700.jpg?_wi=1"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/top-view-woman-hand-put-topping-homemade-pizza_1150-4700.jpg"
|
||||
imageAlt="Cheese pull slow motion"
|
||||
/>
|
||||
</div>
|
||||
@@ -76,48 +58,12 @@ export default function LandingPage() {
|
||||
gridVariant="bento-grid"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Pudgie B Pizza",
|
||||
price: "$28",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-pizza-cheese-ham-vintage-wooden-table_1150-4696.jpg?_wi=1",
|
||||
imageAlt: "Signature pizza",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Monster Pepperoni",
|
||||
price: "$24",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg",
|
||||
imageAlt: "Pepperoni pizza",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "Wings & Fries",
|
||||
price: "$18",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fried-chicken-parts-plate-with-cutlery_23-2148646665.jpg?_wi=1",
|
||||
imageAlt: "Wings plate",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Chicken Parm Sub",
|
||||
price: "$16",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/half-shot-delicious-best-snack-wine-served-brown-tray-right-side-gray-background_140725-140659.jpg",
|
||||
imageAlt: "Sub sandwich",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "S’mores Calzone",
|
||||
price: "$12",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-pizza_1388-640.jpg",
|
||||
imageAlt: "Dessert calzone",
|
||||
},
|
||||
{
|
||||
id: "6",
|
||||
name: "Classic Calzone",
|
||||
price: "$15",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slices-italian-pizza-with-utensils-ingredients-black-kitchen-worktop_23-2148076119.jpg?_wi=1",
|
||||
imageAlt: "Classic calzone",
|
||||
},
|
||||
{ id: "1", name: "Pudgie B Pizza", price: "$28", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-pizza-cheese-ham-vintage-wooden-table_1150-4696.jpg", imageAlt: "Signature pizza" },
|
||||
{ id: "2", name: "Monster Pepperoni", price: "$24", imageSrc: "http://img.b2bpic.net/free-photo/lamb-bone-covered-with-dough-finely-cooked_114579-2429.jpg", imageAlt: "Pepperoni pizza" },
|
||||
{ id: "3", name: "Wings & Fries", price: "$18", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fried-chicken-parts-plate-with-cutlery_23-2148646665.jpg", imageAlt: "Wings plate" },
|
||||
{ id: "4", name: "Chicken Parm Sub", price: "$16", imageSrc: "http://img.b2bpic.net/free-photo/half-shot-delicious-best-snack-wine-served-brown-tray-right-side-gray-background_140725-140659.jpg", imageAlt: "Sub sandwich" },
|
||||
{ id: "5", name: "S’mores Calzone", price: "$12", imageSrc: "http://img.b2bpic.net/free-photo/vegetarian-pizza_1388-640.jpg", imageAlt: "Dessert calzone" },
|
||||
{ id: "6", name: "Classic Calzone", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/slices-italian-pizza-with-utensils-ingredients-black-kitchen-worktop_23-2148076119.jpg", imageAlt: "Classic calzone" },
|
||||
]}
|
||||
title="Featured Items"
|
||||
description="Handcrafted perfection. Our signature lineup is built for those who don't compromise on flavor."
|
||||
@@ -129,10 +75,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
title="The Pudge Standard"
|
||||
description={[
|
||||
"Hand-tossed NYC-style crust with the perfect crunch.",
|
||||
"Pizza, wings, and football Sundays done right.",
|
||||
"Built for late-night cravings and Denver energy.",
|
||||
]}
|
||||
"Hand-tossed NYC-style crust with the perfect crunch.", "Pizza, wings, and football Sundays done right.", "Built for late-night cravings and Denver energy."]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -140,47 +83,13 @@ export default function LandingPage() {
|
||||
<TestimonialCardTwo
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="scale-rotate"
|
||||
testimonials={[
|
||||
{
|
||||
id: "1",
|
||||
name: "Sarah J.",
|
||||
role: "Pizza Enthusiast",
|
||||
testimonial: "EXCELLENT crust. Perfectly charred.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271923.jpg",
|
||||
imageAlt: "neon sign pizza shop",
|
||||
},
|
||||
{
|
||||
id: "2",
|
||||
name: "Michael R.",
|
||||
role: "Local Regular",
|
||||
testimonial: "Best pizza joint in Denver, hands down.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-woman-hand-put-topping-homemade-pizza_1150-4700.jpg?_wi=2",
|
||||
imageAlt: "neon sign pizza shop",
|
||||
},
|
||||
{
|
||||
id: "3",
|
||||
name: "David T.",
|
||||
role: "Game Day Fan",
|
||||
testimonial: "Wings were the surprise winner. Incredible flavor.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-pizza-cheese-ham-vintage-wooden-table_1150-4696.jpg?_wi=2",
|
||||
imageAlt: "neon sign pizza shop",
|
||||
},
|
||||
{
|
||||
id: "4",
|
||||
name: "Emily C.",
|
||||
role: "DTC Resident",
|
||||
testimonial: "Pudge Bros is the vibe. Unreal quality.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fried-chicken-parts-plate-with-cutlery_23-2148646665.jpg?_wi=2",
|
||||
imageAlt: "neon sign pizza shop",
|
||||
},
|
||||
{
|
||||
id: "5",
|
||||
name: "Tom B.",
|
||||
role: "Late Night Snacker",
|
||||
testimonial: "Always open, always loud, always fire.",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/slices-italian-pizza-with-utensils-ingredients-black-kitchen-worktop_23-2148076119.jpg?_wi=2",
|
||||
imageAlt: "neon sign pizza shop",
|
||||
},
|
||||
{ id: "1", name: "Sarah J.", role: "Pizza Enthusiast", testimonial: "EXCELLENT crust. Perfectly charred.", imageSrc: "http://img.b2bpic.net/free-photo/friends-having-nice-barbeque-together_23-2149271923.jpg", imageAlt: "neon sign pizza shop" },
|
||||
{ id: "2", name: "Michael R.", role: "Local Regular", testimonial: "Best pizza joint in Denver, hands down.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-woman-hand-put-topping-homemade-pizza_1150-4700.jpg", imageAlt: "neon sign pizza shop" },
|
||||
{ id: "3", name: "David T.", role: "Game Day Fan", testimonial: "Wings were the surprise winner. Incredible flavor.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tasty-pizza-cheese-ham-vintage-wooden-table_1150-4696.jpg", imageAlt: "neon sign pizza shop" },
|
||||
{ id: "4", name: "Emily C.", role: "DTC Resident", testimonial: "Pudge Bros is the vibe. Unreal quality.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-fried-chicken-parts-plate-with-cutlery_23-2148646665.jpg", imageAlt: "neon sign pizza shop" },
|
||||
{ id: "5", name: "Tom B.", role: "Late Night Snacker", testimonial: "Always open, always loud, always fire.", imageSrc: "http://img.b2bpic.net/free-photo/slices-italian-pizza-with-utensils-ingredients-black-kitchen-worktop_23-2148076119.jpg", imageAlt: "neon sign pizza shop" },
|
||||
]}
|
||||
title="Legendary Reviews"
|
||||
description="What our hungry Denver crew is saying."
|
||||
@@ -193,36 +102,9 @@ export default function LandingPage() {
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
label: "Vibe",
|
||||
title: "Chrome & Neon",
|
||||
items: [
|
||||
"Brushed steel",
|
||||
"Neon signs",
|
||||
"Dark aesthetics",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
label: "Food",
|
||||
title: "Handcrafted",
|
||||
items: [
|
||||
"Fresh dough daily",
|
||||
"Premium toppings",
|
||||
"Slow-motion pulls",
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
label: "Energy",
|
||||
title: "Denver Nights",
|
||||
items: [
|
||||
"Late night hub",
|
||||
"Game day sound",
|
||||
"Mile high attitude",
|
||||
],
|
||||
},
|
||||
{ id: "f1", label: "Vibe", title: "Chrome & Neon", items: ["Brushed steel", "Neon signs", "Dark aesthetics"] },
|
||||
{ id: "f2", label: "Food", title: "Handcrafted", items: ["Fresh dough daily", "Premium toppings", "Slow-motion pulls"] },
|
||||
{ id: "f3", label: "Energy", title: "Denver Nights", items: ["Late night hub", "Game day sound", "Mile high attitude"] },
|
||||
]}
|
||||
title="The DTC Experience"
|
||||
description="Almost like a premium sneaker brand campaign. Late nights, chrome tables, and the best slice in the city."
|
||||
@@ -234,15 +116,9 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="Pudge Bros. Pizza - DTC"
|
||||
description={[
|
||||
"Dine-In • Pickup • Delivery",
|
||||
"Game Day Specials available daily.",
|
||||
"Call us: (303) 555-PUDGE",
|
||||
]}
|
||||
"Dine-In • Pickup • Delivery", "Game Day Specials available daily.", "Call us: (303) 555-PUDGE"]}
|
||||
buttons={[
|
||||
{
|
||||
text: "GET DIRECTIONS",
|
||||
href: "#",
|
||||
},
|
||||
{ text: "GET DIRECTIONS", href: "#" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -250,9 +126,7 @@ export default function LandingPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactCenter
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
tag="Stay Updated"
|
||||
title="Join the Pudge Rewards Club"
|
||||
description="Sign up for exclusive drops, game-day promos, and VIP slice alerts."
|
||||
|
||||
Reference in New Issue
Block a user