From 3fb677916ddfa0f829c863fa80c6f6a3ab92af42 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 03:13:49 +0000 Subject: [PATCH] Switch to version 1: modified src/app/layout.tsx --- src/app/layout.tsx | 1421 +++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 1414 insertions(+), 7 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0e3abf0..22a69c2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,1426 @@ import type { Metadata } from "next"; +import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import "@/styles/globals.css"; +import { Mulish } from "next/font/google"; +import "./globals.css"; +import { ServiceWrapper } from "@/components/ServiceWrapper"; +import Tag from "@/tag/Tag"; -const inter = Inter({ subsets: ["latin"] }); +const halant = Halant({ + variable: "--font-halant", subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); + +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + +const mulish = Mulish({ + variable: "--font-mulish", subsets: ["latin"], +}); export const metadata: Metadata = { - title: "PYP Restaurante - Gastronomía Fina en Nueva York", description: "Experimenta mariscos refinados, vinos seleccionados y cócteles artesanales en PYP, un restaurante de lujo en Nueva York."}; + title: "PYP Restaurant | Fine Dining NYC", description: "Experience luxury fine dining in NYC. Refined seafood, curated wines, craft cocktails. Private events and exclusive dining experiences.", keywords: "fine dining restaurant New York, luxury seafood, private events, wine pairing", metadataBase: new URL("https://pyprestaurant.com"), + alternates: { + canonical: "https://pyprestaurant.com" + }, + openGraph: { + title: "PYP Restaurant | Culinary Excellence in NYC", description: "Discover refined dining with curated wines and craft cocktails. Reserve your unforgettable experience today.", siteName: "PYP Restaurant", type: "website", url: "https://pyprestaurant.com", images: [ + { + url: "http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199323.jpg", alt: "PYP Restaurant intimate dining experience" + } + ] + }, + twitter: { + card: "summary_large_image", title: "PYP Restaurant | Fine Dining NYC", description: "Luxury seafood, premium wines, craft cocktails. Reserve your culinary experience.", images: ["http://img.b2bpic.net/free-photo/interior-design-neoclassical-style-with-furnishings-decor_23-2151199323.jpg"] + }, + robots: { + index: true, + follow: true + } +}; export default function RootLayout({ children, -}: { +}: Readonly<{ children: React.ReactNode; -}) { +}>) { return ( - - {children} + + + + + {children} + +