diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 22a69c2..0e3abf0 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1426 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -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"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - 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 - } -}; + 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."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -