diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7593d92..0410294 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1421 +1,17 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "Industrial Food Processing Machinery Supplier | Arpita Consultancy", description: "10 years serving food & beverage manufacturers with verified, high-performance machinery solutions in Ghaziabad & Delhi NCR. Get custom quotes instantly.", keywords: "food processing machinery, beverage equipment supplier, rice mill, mineral water processing, industrial machinery Ghaziabad, Delhi NCR", metadataBase: new URL("https://arpitaconsultancy.com"), - alternates: { - canonical: "https://arpitaconsultancy.com" - }, - openGraph: { - title: "Industrial Food Processing Machinery You Can Trust", description: "Arpita Consultancy: 10 years of proven expertise in food processing and beverage production equipment across Delhi NCR", url: "https://arpitaconsultancy.com", siteName: "Arpita Consultancy", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/agricultural-silos-building-exterior_146671-19101.jpg", alt: "industrial food processing machinery equipment" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Industrial Machinery Solutions | Arpita Consultancy", description: "Trusted supplier of food processing and beverage equipment for manufacturers in Delhi NCR", images: ["http://img.b2bpic.net/free-photo/agricultural-silos-building-exterior_146671-19101.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Arpita Consultancy - Industrial Food Processing Machinery", description: "10 years serving Ghaziabad and Delhi NCR with verified, high-performance beverage, mineral water, and rice mill solutions."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -