Update src/app/layout.tsx
This commit is contained in:
@@ -1,24 +1,61 @@
|
||||
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";
|
||||
import { Figtree } from "next/font/google";
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant",
|
||||
subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
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<{
|
||||
@@ -27,7 +64,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${figtree.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${figtree.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -39,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user