|
|
|
|
@@ -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 (
|
|
|
|
|
<html lang="en" suppressHydrationWarning>
|
|
|
|
|
<ServiceWrapper>
|
|
|
|
|
<body
|
|
|
|
|
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
|
|
|
>
|
|
|
|
|
<Tag />
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<html lang="en">
|
|
|
|
|
<body className={`${montserrat.variable} ${inter.variable} font-sans`}>
|
|
|
|
|
{children}
|
|
|
|
|
|
|
|
|
|
<script
|
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
|
__html: `
|
|
|
|
|
@@ -1415,7 +1391,6 @@ export default function RootLayout({
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</body>
|
|
|
|
|
</ServiceWrapper>
|
|
|
|
|
</html>
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|