diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 1a60acd..30e5ad9 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,48 +1,28 @@
import type { Metadata } from "next";
-import { Mulish } from "next/font/google";
-import { Inter } from "next/font/google";
+import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const mulish = Mulish({
- variable: "--font-mulish", subsets: ["latin"],
+const geist = Geist({
+ variable: "--font-geist-sans", subsets: ["latin"],
});
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
+const geistMono = Geist_Mono({
+ variable: "--font-geist-mono", subsets: ["latin"],
});
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: {
- 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"],
- },
-};
+ 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."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-