From 5b8deff8a2ca80b50dd8d5c1d4b5628f79b4f2ae Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 13:46:44 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 1409 +------------------------------------------- 1 file changed, 6 insertions(+), 1403 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a16ffab..6817972 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1416 +1,20 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Plastic Manufacturer Rajkot | Vandit Polycraft Pvt. Ltd.", description: "Reliable plastic manufacturing company in Rajkot providing high quality polycraft products with dependable delivery and excellent service. Contact us for quote requests.", keywords: "plastic manufacturer Rajkot, plastic products Gujarat, polycraft manufacturer, industrial plastic supplier India, plastic containers Rajkot, manufacturing Rajkot", openGraph: { - title: "Plastic Manufacturer Rajkot | Vandit Polycraft", description: "High quality plastic manufacturing with reliable delivery. Trusted by industrial buyers and manufacturers across India.", type: "website", siteName: "Vandit Polycraft Pvt. Ltd.", images: [ - { - url: "http://img.b2bpic.net/free-photo/electrical-panel-with-fuses-contactors-closeup_169016-51509.jpg", alt: "Vandit Polycraft Manufacturing Facility"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Plastic Manufacturer Rajkot | Vandit Polycraft", description: "Reliable plastic manufacturing partner with quality products and on-time delivery", images: ["http://img.b2bpic.net/free-photo/electrical-panel-with-fuses-contactors-closeup_169016-51509.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -