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 +} 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}