From e841a65b29be39f631622f27d59c008e7b548870 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:39:50 +0000 Subject: [PATCH 1/5] 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 6875220..4c65d14 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -93,4 +93,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} -- 2.49.1 From f1bc1a93949e31f39d0aac1d64e6b7b4f6d84522 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 12:39:51 +0000 Subject: [PATCH 2/5] Update src/app/layout.tsx --- src/app/layout.tsx | 62 ++++++---------------------------------------- 1 file changed, 7 insertions(+), 55 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9d8a536..14f61c2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,67 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "PrintHub India - Bulk Printing Services Nationwide", - description: "Professional bulk printing services in India. Flyers, books, pamphlets, exam copies, and more. Affordable pricing, fast delivery, trusted quality. Get instant quote today!", - keywords: "bulk printing India, flyer printing, book printing, exam copy printing, pamphlet printing, nationwide delivery", - metadataBase: new URL("https://printhub-india.com"), - alternates: { - canonical: "https://printhub-india.com" - }, - robots: { - index: true, - follow: true - }, - openGraph: { - title: "PrintHub India - Bulk Printing Made Simple", - description: "Get high-quality bulk printing with fast nationwide delivery across India. Schools, businesses, and publishers trust us.", - url: "https://printhub-india.com", - siteName: "PrintHub India", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-shot-screw-cutting-machine-factory-that-makes-metal-details_645730-81.jpg", - alt: "PrintHub India - Professional Printing Press" - } - ] - }, - twitter: { - card: "summary_large_image", - title: "PrintHub India - Bulk Printing Services", - description: "Professional bulk printing with fast delivery across India", - images: ["http://img.b2bpic.net/free-photo/close-up-shot-screw-cutting-machine-factory-that-makes-metal-details_645730-81.jpg"] - } -}; + title: "PrintHub India - Bulk Printing Services", description: "Professional bulk printing services across India. Flyers, books, pamphlets, exam copies, and more with premium quality and affordable pricing."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}