From 546ac850dd8c6e2d4a475fe802357f41f530e9fc Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 08:52:29 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 49 ++++++++++++---------------------------------- 1 file changed, 12 insertions(+), 37 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6e01fb3..f1bb7c1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,29 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Montserrat, Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; const montserrat = Montserrat({ - variable: "--font-montserrat", subsets: ["latin"], + subsets: ["latin"], + variable: "--font-montserrat", weight: ["400", "500", "600", "700", "800", "900"], }); const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); + subsets: ["latin"], + variable: "--font-inter"}); export const metadata: Metadata = { - title: "Noble Graphic - Professional Printing Services in Nashik", description: "Premium digital and offset printing services in Nashik. Fast turnaround, competitive pricing. Visit cards, flyers, banners, and more. Call +91 86982 65253 today.", keywords: "printing services Nashik, digital printing, offset printing, visiting cards, flyers, banners, business printing, print shop near me", metadataBase: new URL("https://noblegraphic.in"), - alternates: { - canonical: "https://noblegraphic.in" - }, - openGraph: { - title: "Noble Graphic - Professional Printing in Nashik", description: "High-quality printing services for businesses and events. Fast service, best prices.", url: "https://noblegraphic.in", siteName: "Noble Graphic", type: "website", images: [ - { - url: "https://noblegraphic.in/og-image.jpg", alt: "Noble Graphic - Professional Printing Services" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Noble Graphic - Printing Services in Nashik", description: "Professional printing solutions with fast turnaround and competitive pricing.", images: ["https://noblegraphic.in/og-image.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Noble Graphic | Professional Printing Services in Nashik", description: "Professional printing services in Nashik - Digital & Offset Printing, Visiting Cards, Flyers, Banners, and Business Stationery with Fast Turnaround and Competitive Pricing"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +