From 60a3b86b984a7352e7ff1de5f3191978d0c52d3b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 06:53:01 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 56 ++++++++++------------------------------------ 1 file changed, 12 insertions(+), 44 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 97baa77..f208b70 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,26 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Public_Sans } from "next/font/google"; +import { DM_Sans } from "next/font/google"; +import "./styles/base.css"; +import "./styles/variables.css"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Trattoria Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine and warm hospitality at Trattoria Italia. Traditional handcrafted pasta dishes and regional Italian specialties since 1995.", keywords: "Italian restaurant, authentic pasta, fine dining, Italian cuisine, family restaurant", metadataBase: new URL("https://trattoria-italia.com"), - alternates: { - canonical: "https://trattoria-italia.com"}, - openGraph: { - title: "Trattoria Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine and warm hospitality. Traditional handcrafted pasta dishes and regional Italian specialties.", siteName: "Trattoria Italia", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/beautiful-decorated-table-with-pine-leaf_8353-10194.jpg", alt: "Elegant Italian restaurant interior"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Trattoria Italia - Authentic Italian Restaurant", description: "Experience authentic Italian cuisine and warm hospitality. Reserve your table today.", images: ["http://img.b2bpic.net/free-photo/beautiful-decorated-table-with-pine-leaf_8353-10194.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "DeCasa Wood-Fired Pizza - Best Pizza in Midland, TX", description: "Premium wood-fired pizza crafted with 48-hour fermented dough. MRT Best of Midland 2024 & 2025. Located at 3302 Bedford Ave, Midland TX. Award-winning wood-fired pizza with local ingredients."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +