import type { Metadata } from "next"; import { Montserrat } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); export const metadata: Metadata = { title: "Resource Enterprises | Premium Industrial Exporter", description: "Global industrial exporter delivering premium cutlery, footwear, salt, and specialized parts. Trusted by 500+ enterprise clients across 50+ countries. ISO 9001 certified.", keywords: "industrial exporter, B2B supplier, cutlery, footwear, salt, industrial parts, bulk export, procurement", robots: { index: true, follow: true, }, openGraph: { title: "Resource Enterprises - Precision Crafted, Globally Trusted", description: "Premium industrial products delivered to procurement leaders worldwide. 30+ years of operational excellence.", type: "website", siteName: "Resource Enterprises", images: [ { url: "http://img.b2bpic.net/free-photo/various-surgical-tools-kept-table-operation-theater_107420-63639.jpg", alt: "Resource Enterprises Industrial Products"}, ], }, twitter: { card: "summary_large_image", title: "Resource Enterprises - Global Industrial Excellence", description: "30+ years delivering premium industrial products to international buyers.", images: ["http://img.b2bpic.net/free-photo/various-surgical-tools-kept-table-operation-theater_107420-63639.jpg"], }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return ( {children}