Files
b35173d0-e1d4-47ec-a8bb-3f5…/src/app/layout.tsx
2026-03-12 05:56:47 +00:00

81 lines
2.6 KiB
TypeScript

import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Figtree } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const figtree = Figtree({
variable: "--font-figtree",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "BMC Industries | Industrial & Commercial Construction Experts",
description: "Expert industrial construction services in Telangana. Steel structures, factory buildings, warehouse construction, and turnkey projects. Call 040-3584-4070 for free consultation.",
keywords: "industrial construction Hyderabad, factory shed construction Telangana, steel structure construction, warehouse construction contractor, turnkey construction, industrial contractor",
metadataBase: new URL("https://bmcindustries.com"),
alternates: {
canonical: "https://bmcindustries.com",
},
openGraph: {
title: "BMC Industries - Industrial Construction Experts",
description: "Leading industrial and commercial construction company in Telangana with in-house steel fabrication. Get free quote today.",
url: "https://bmcindustries.com",
siteName: "BMC Industries",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/close-up-construction-site-excavator_1112-1211.jpg",
alt: "BMC Industries - Industrial Construction",
},
],
},
twitter: {
card: "summary_large_image",
title: "BMC Industries | Industrial Construction",
description: "Expert steel and civil construction solutions for industrial and commercial projects.",
images: ["http://img.b2bpic.net/free-photo/close-up-construction-site-excavator_1112-1211.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
>
<Tag />
{children}
<script
dangerouslySetInnerHTML={{
__html: `${getVisualEditScript()}`
}}
/>
</body>
</ServiceWrapper>
</html>
);
}