5 Commits

Author SHA1 Message Date
8a4a7e97f3 Update src/app/page.tsx 2026-03-04 08:52:29 +00:00
546ac850dd Update src/app/layout.tsx 2026-03-04 08:52:29 +00:00
0e6be2befd Merge version_1 into main
Merge version_1 into main
2026-03-04 08:49:16 +00:00
6c05784bcd Merge version_1 into main
Merge version_1 into main
2026-03-04 08:48:16 +00:00
ec6e8d379f Merge version_1 into main
Merge version_1 into main
2026-03-04 08:46:34 +00:00
2 changed files with 13 additions and 38 deletions

View File

@@ -1,53 +1,29 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat } from "next/font/google"; import { Montserrat, Inter } 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({
variable: "--font-montserrat", subsets: ["latin"], subsets: ["latin"],
variable: "--font-montserrat", weight: ["400", "500", "600", "700", "800", "900"],
}); });
const inter = Inter({ const inter = Inter({
variable: "--font-inter", subsets: ["latin"], subsets: ["latin"],
}); variable: "--font-inter"});
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: "Professional printing services in Nashik - Digital & Offset Printing, Visiting Cards, Flyers, Banners, and Business Stationery with Fast Turnaround and Competitive Pricing"};
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.variable} ${inter.variable} font-sans`}>
<body {children}
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1415,7 +1391,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -49,7 +49,7 @@ export default function LandingPage() {
logoText="Noble Graphic" logoText="Noble Graphic"
description="Professional printing services in Nashik for all your business and personal printing needs. High-quality digital and offset printing with fast turnaround and competitive pricing." description="Professional printing services in Nashik for all your business and personal printing needs. High-quality digital and offset printing with fast turnaround and competitive pricing."
buttons={[ buttons={[
{ text: "Call Now", href: "tel:+918698265253" }, { text: "Get Free Quote", href: "tel:+918698265253" },
{ text: "Get a Quote" } { text: "Get a Quote" }
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"