From 9e412e0933b94168cc29e8eb0822b79c39b25aef Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 09:00:23 +0000 Subject: [PATCH 1/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 1936761..7e061a7 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -44,7 +44,7 @@ export default function ContactPage() { title="Get in Touch With Us" description="Have a printing project in mind? Send us your requirements and we'll get back to you with a quote and timeline. Fill out the form below or contact us directly." useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/man-working-printing-house-with-paper-paints_1303-26627.jpg" + imageSrc="http://img.b2bpic.net/free-photo/man-working-printing-house-with-paper-paints_1303-26627.jpg?_wi=3" imageAlt="printing press machinery close up" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From c4fa9e59a8dd3212a469111c77cf9410fdff9686 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 12 Mar 2026 09:00:23 +0000 Subject: [PATCH 2/6] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..3495cc1 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Roboto } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Roboto } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,41 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Pradhan Printers | Offset, Screen & Color Printing Services", + description: "Premium printing services for wedding cards, business cards, flex banners, and more. Quality offset and color printing in Kasganj. Fast turnaround and competitive pricing.", + keywords: "printing services, offset printing, color printing, wedding cards, business cards, flex banners, printing company Kasganj", + metadataBase: new URL("https://pradhanprinters.com"), + alternates: { + canonical: "https://pradhanprinters.com", + }, + openGraph: { + title: "Pradhan Printers - Professional Printing Solutions", + description: "Expert offset, screen, and color printing services. Wedding cards, business cards, posters, and custom printing.", + siteName: "Pradhan Printers", + type: "website", + url: "https://pradhanprinters.com", + images: [ + { + url: "http://img.b2bpic.net/free-photo/multicolored-powder-splatter-white-background_23-2147948971.jpg", + alt: "Pradhan Printers - Professional Printing Services", + width: 1200, + height: 630, + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Pradhan Printers | Professional Printing Services", + description: "Quality printing for all your business and personal needs", + images: ["http://img.b2bpic.net/free-photo/multicolored-powder-splatter-white-background_23-2147948971.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}