Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1b9542a1ed | |||
| e1f9f9562f | |||
| c2be9c4ed8 | |||
| 8a4a7e97f3 | |||
| 546ac850dd | |||
| 0e6be2befd | |||
| 6c05784bcd | |||
| ec6e8d379f |
@@ -1,53 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Montserrat } from "next/font/google";
|
import { Montserrat } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const montserrat = Montserrat({
|
const montserrat = Montserrat({ subsets: ["latin"] });
|
||||||
variable: "--font-montserrat", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "Noble Graphic | Professional Printing Services in Nashik", description: "High-quality digital and offset printing services in Nashik. Fast turnaround, competitive pricing. Business cards, flyers, banners, and more."};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={montserrat.className}>{children}
|
||||||
<body
|
|
||||||
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1415,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -217,7 +217,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
tag="Get in Touch"
|
tag="Get in Touch"
|
||||||
title="Need Professional Printing Today?"
|
title="Need Professional Printing Today?"
|
||||||
description="Contact us now for a free quote or to discuss your printing requirements. We're here to help with fast service and competitive pricing."
|
description="Get Your Free Quote in Minutes"
|
||||||
tagIcon={Phone}
|
tagIcon={Phone}
|
||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
background={{ variant: "radial-gradient" }}
|
background={{ variant: "radial-gradient" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user