Merge version_1 into main #1

Merged
bender merged 7 commits from version_1 into main 2026-03-14 18:11:52 +00:00
7 changed files with 76 additions and 38 deletions

View File

@@ -73,7 +73,7 @@ export default function CateringPage() {
id: "weddings",
title: "Weddings & Receptions",
description: "Create an unforgettable dining experience for your guests with authentic L'Industrie pizza. We offer customized menus and can accommodate dietary preferences.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-customers-eating-pizza-restaurant_273609-44915.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-customers-eating-pizza-restaurant_273609-44915.jpg?_wi=1",
},
{
id: "corporate",
@@ -85,13 +85,13 @@ export default function CateringPage() {
id: "private-parties",
title: "Private Parties",
description: "Celebrate birthdays, anniversaries, and milestones with our catering service. We handle setup and cleanup so you can focus on enjoying time with loved ones.",
imageSrc: "http://img.b2bpic.net/free-photo/happy-customers-eating-pizza-restaurant_273609-44915.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-customers-eating-pizza-restaurant_273609-44915.jpg?_wi=2",
},
{
id: "large-orders",
title: "Large Order Fulfillment",
description: "Need pizza for a group? We specialize in bulk orders for organizations and community events. Contact us for volume pricing.",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-table-assortment_23-2150062734.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-table-assortment_23-2150062734.jpg?_wi=2",
},
]}
gridVariant="bento-grid"

View File

@@ -57,7 +57,7 @@ export default function GalleryPage() {
id: "gallery-ingredients",
title: "Premium Italian Ingredients",
description: "We source only the finest imported ingredients from Italy, including San Marzano tomatoes and buffalo mozzarella.",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-table-assortment_23-2150062734.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-table-assortment_23-2150062734.jpg?_wi=1",
imageAlt: "fresh italian ingredients tomatoes basil",
},
{
@@ -95,7 +95,7 @@ export default function GalleryPage() {
price: "$35.00",
rating: 4.9,
reviewCount: "47",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-courier-green-uniform-cape-holding-delivery-coffee-cups-with-food-package-pink-background-service-uniform-delivery-job_140725-39519.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-courier-green-uniform-cape-holding-delivery-coffee-cups-with-food-package-pink-background-service-uniform-delivery-job_140725-39519.jpg?_wi=1",
imageAlt: "branded t-shirt pizzeria logo merchandise",
},
{
@@ -105,7 +105,7 @@ export default function GalleryPage() {
price: "$35.00",
rating: 5,
reviewCount: "52",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-courier-green-uniform-cape-holding-delivery-coffee-cups-with-food-package-pink-background-service-uniform-delivery-job_140725-39519.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-courier-green-uniform-cape-holding-delivery-coffee-cups-with-food-package-pink-background-service-uniform-delivery-job_140725-39519.jpg?_wi=2",
imageAlt: "branded t-shirt pizzeria logo merchandise",
},
{
@@ -115,7 +115,7 @@ export default function GalleryPage() {
price: "$28.00",
rating: 4.8,
reviewCount: "31",
imageSrc: "http://img.b2bpic.net/free-photo/young-female-cook-black-apron_176474-93742.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-female-cook-black-apron_176474-93742.jpg?_wi=1",
imageAlt: "branded cap hat pizzeria logo",
},
]}

View File

@@ -1,24 +1,60 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Montserrat } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "L'Industrie Pizzeria - Authentic Brooklyn Pizza",
description: "Award-winning thin-crust pizza in Williamsburg, Brooklyn. 3-day cold fermented dough, imported Italian ingredients, Neapolitan craftsmanship.",
keywords: "pizza brooklyn, neapolitan pizza, williamsburg pizza, authentic pizza, thin crust pizza, italian restaurant brooklyn",
metadataBase: new URL("https://lindustriepizzeria.com"),
alternates: {
canonical: "https://lindustriepizzeria.com",
},
openGraph: {
title: "L'Industrie Pizzeria - Authentic Brooklyn Pizza",
description: "Experience authentic Neapolitan pizza at L'Industrie. Award-winning pizzeria in Williamsburg, Brooklyn.",
siteName: "L'Industrie Pizzeria",
type: "website",
images: [
{
url: "https://lindustriepizzeria.com/og-image.jpg",
alt: "L'Industrie Signature Burrata Pizza",
},
],
},
twitter: {
card: "summary_large_image",
title: "L'Industrie Pizzeria - Authentic Brooklyn Pizza",
description: "Award-winning thin-crust pizza in Williamsburg. Neapolitan tradition meets Brooklyn style.",
images: ["https://lindustriepizzeria.com/twitter-image.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +63,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +77,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -54,7 +54,7 @@ export default function MenuPage() {
price: "$22.00",
rating: 5,
reviewCount: "284",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12438.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12438.jpg?_wi=3",
imageAlt: "Burrata Pie",
},
{
@@ -64,7 +64,7 @@ export default function MenuPage() {
price: "$24.00",
rating: 5,
reviewCount: "156",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-appetizing-pizza-slices-food-background_169016-18645.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-appetizing-pizza-slices-food-background_169016-18645.jpg?_wi=2",
imageAlt: "Fig Jam & Bacon Pizza",
},
{
@@ -74,7 +74,7 @@ export default function MenuPage() {
price: "$20.00",
rating: 4.8,
reviewCount: "203",
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-cheesy-tomato-pizza-with-olives-sausages-inside-pan-brown-desk-pizza-food-meal-fast-food-cheese-sausage_140725-32615.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-cheesy-tomato-pizza-with-olives-sausages-inside-pan-brown-desk-pizza-food-meal-fast-food-cheese-sausage_140725-32615.jpg?_wi=2",
imageAlt: "Spicy Salami Pizza",
},
{
@@ -84,7 +84,7 @@ export default function MenuPage() {
price: "$16.00",
rating: 5,
reviewCount: "412",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pizza-dough-with-wooden-board-parmesan-cheese_23-2148753785.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pizza-dough-with-wooden-board-parmesan-cheese_23-2148753785.jpg?_wi=2",
imageAlt: "Margherita Pizza",
},
{
@@ -94,7 +94,7 @@ export default function MenuPage() {
price: "$4.50",
rating: 5,
reviewCount: "89",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12438.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12438.jpg?_wi=4",
imageAlt: "Burrata Slice",
},
{
@@ -104,7 +104,7 @@ export default function MenuPage() {
price: "$3.00",
rating: 4.9,
reviewCount: "342",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pizza-dough-with-wooden-board-parmesan-cheese_23-2148753785.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pizza-dough-with-wooden-board-parmesan-cheese_23-2148753785.jpg?_wi=3",
imageAlt: "Margherita Slice",
},
]}

View File

@@ -62,7 +62,7 @@ export default function MerchPage() {
price: "$35.00",
rating: 4.9,
reviewCount: "47",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-courier-green-uniform-cape-holding-delivery-coffee-cups-with-food-package-pink-background-service-uniform-delivery-job_140725-39519.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-courier-green-uniform-cape-holding-delivery-coffee-cups-with-food-package-pink-background-service-uniform-delivery-job_140725-39519.jpg?_wi=3",
},
{
id: "merch-tshirt-white",
@@ -71,7 +71,7 @@ export default function MerchPage() {
price: "$35.00",
rating: 5,
reviewCount: "52",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-courier-green-uniform-cape-holding-delivery-coffee-cups-with-food-package-pink-background-service-uniform-delivery-job_140725-39519.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-young-male-courier-green-uniform-cape-holding-delivery-coffee-cups-with-food-package-pink-background-service-uniform-delivery-job_140725-39519.jpg?_wi=4",
},
{
id: "merch-cap",
@@ -80,7 +80,7 @@ export default function MerchPage() {
price: "$28.00",
rating: 4.8,
reviewCount: "31",
imageSrc: "http://img.b2bpic.net/free-photo/young-female-cook-black-apron_176474-93742.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-female-cook-black-apron_176474-93742.jpg?_wi=2",
},
]}
gridVariant="three-columns-all-equal-width"

View File

@@ -62,19 +62,19 @@ export default function OurStoryPage() {
{
id: "massimo",
name: "Massimo Laveglia - Founder & Pizzaiolo",
imageSrc: "http://img.b2bpic.net/free-photo/raw-pasta-lying-near-machine_23-2147849797.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/raw-pasta-lying-near-machine_23-2147849797.jpg?_wi=1",
imageAlt: "italian pizza chef portrait professional",
},
{
id: "team-member-2",
name: "Elena Rossini - Executive Chef",
imageSrc: "http://img.b2bpic.net/free-photo/raw-pasta-lying-near-machine_23-2147849797.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/raw-pasta-lying-near-machine_23-2147849797.jpg?_wi=2",
imageAlt: "italian pizza chef portrait professional",
},
{
id: "team-member-3",
name: "Marco DiGiovanni - Head of Operations",
imageSrc: "http://img.b2bpic.net/free-photo/raw-pasta-lying-near-machine_23-2147849797.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/raw-pasta-lying-near-machine_23-2147849797.jpg?_wi=3",
imageAlt: "italian pizza chef portrait professional",
},
]}

View File

@@ -54,7 +54,7 @@ export default function HomePage() {
<HeroLogo
logoText="L'Industrie"
description="Authentic pizza in the heart of Brooklyn. An art form born in Florence, perfected in Williamsburg."
imageSrc="http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12438.jpg"
imageSrc="http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12438.jpg?_wi=1"
imageAlt="Signature Burrata Pizza"
buttons={[
{
@@ -81,28 +81,28 @@ export default function HomePage() {
id: "burrata-pie",
title: "Burrata Pie",
description: "Creamy burrata, roasted garlic, fresh basil, San Marzano tomato, topped with pesto drizzle and crispy fried breadcrumbs.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12438.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-pizza-caesar_140725-12438.jpg?_wi=2",
imageAlt: "Burrata Pie",
},
{
id: "fig-jam-bacon",
title: "Fig Jam & Bacon",
description: "Ricotta base, prosciutto di Parma, fresh figs, fig jam, toasted pine nuts, arugula, aged balsamic reduction.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-appetizing-pizza-slices-food-background_169016-18645.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-appetizing-pizza-slices-food-background_169016-18645.jpg?_wi=1",
imageAlt: "Fig Jam & Bacon Pizza",
},
{
id: "spicy-salami",
title: "Spicy Salami",
description: "Calabrese salami, roasted red peppers, hot honey drizzle, mozzarella di bufala, fresh chili, oregano.",
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-cheesy-tomato-pizza-with-olives-sausages-inside-pan-brown-desk-pizza-food-meal-fast-food-cheese-sausage_140725-32615.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-close-view-cheesy-tomato-pizza-with-olives-sausages-inside-pan-brown-desk-pizza-food-meal-fast-food-cheese-sausage_140725-32615.jpg?_wi=1",
imageAlt: "Spicy Salami Pizza",
},
{
id: "margherita",
title: "Margherita",
description: "The timeless classic. Fresh buffalo mozzarella, San Marzano tomatoes, fresh basil, extra virgin olive oil, sea salt.",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pizza-dough-with-wooden-board-parmesan-cheese_23-2148753785.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pizza-dough-with-wooden-board-parmesan-cheese_23-2148753785.jpg?_wi=1",
imageAlt: "Margherita Pizza",
},
]}
@@ -137,37 +137,37 @@ export default function HomePage() {
{
id: "review-1",
name: "The New York Times",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg?_wi=1",
imageAlt: "The New York Times",
},
{
id: "review-2",
name: "Infatuation NY",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg?_wi=2",
imageAlt: "Infatuation NY",
},
{
id: "review-3",
name: "Michelin Guide",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg?_wi=3",
imageAlt: "Michelin Guide",
},
{
id: "review-4",
name: "Eater NY",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg?_wi=4",
imageAlt: "Eater NY",
},
{
id: "review-5",
name: "Food & Wine",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg?_wi=5",
imageAlt: "Food & Wine",
},
{
id: "review-6",
name: "Brooklyn Magazine",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg",
imageSrc: "http://img.b2bpic.net/free-vector/latest-news-banner-collection_23-2148155505.jpg?_wi=6",
imageAlt: "Brooklyn Magazine",
},
]}