Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| d5a71ee038 | |||
| bce57796ee | |||
| 79e0dd4bb8 | |||
| 04fb6f2baf | |||
| 7eaf775370 |
@@ -1,48 +1,28 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const mulish = Mulish({
|
const geist = Geist({
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Primo Pizza | Authentic New York-Style Pizza", description: "Fresh homemade New York-style pizza with premium ingredients and wood-fired perfection. Order online or visit us in Manhattan.", keywords: "New York pizza, authentic pizza, wood-fired pizza, Manhattan pizzeria, Italian food", robots: {
|
title: "Primo Pizza | Authentic New York-Style Pizza", description: "Experience authentic New York-style pizza crafted with love. Fresh ingredients, traditional recipes, and wood-fired perfection."};
|
||||||
index: true,
|
|
||||||
follow: true,
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Primo Pizza | Authentic New York-Style Pizza", description: "Experience authentic New York pizza crafted with fresh ingredients and traditional techniques.", type: "website", siteName: "Primo Pizza", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/homemade-pizza-food-photography-recipe-idea_53876-38.jpg", alt: "Primo Pizza - Fresh Homemade Pizza"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Primo Pizza | New York", description: "Authentic Italian-style pizza with premium ingredients", images: ["http://img.b2bpic.net/free-photo/homemade-pizza-food-photography-recipe-idea_53876-38.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||||
<body
|
{children}
|
||||||
className={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1410,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ export default function LandingPage() {
|
|||||||
<div id="menu" data-section="menu">
|
<div id="menu" data-section="menu">
|
||||||
<ProductCardTwo
|
<ProductCardTwo
|
||||||
title="Our Signature Pizzas"
|
title="Our Signature Pizzas"
|
||||||
description="Choose from our selection of authentic Italian-inspired pizzas"
|
description="Prices are per pizza and qualify for bulk discounts. Order multiple pizzas for your event and receive special discounts that make quality pizza affordable for everyone."
|
||||||
tag="Menu"
|
tag="Menu"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user