Update src/app/layout.tsx

This commit is contained in:
2026-03-16 18:14:53 +00:00
parent c8100fde37
commit 194ff3168d

View File

@@ -1,28 +1,55 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat, Inter } 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 { Montserrat } from "next/font/google";
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const montserrat = Montserrat({
variable: "--font-montserrat",
subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Gidon Engineering Works - CNC Machining & Fabrication Services Hyderabad",
description: "Professional CNC machining, custom fabrication, and industrial repair services in Hyderabad. Serving factories, manufacturers, and industrial companies since 2018. Get your engineering quote today.",
keywords: "CNC machining Hyderabad, metal fabrication services, custom machine parts, industrial repair, welding services, engineering workshop, precision manufacturing",
metadataBase: new URL("https://gidonengineeringworks.com"),
alternates: {
canonical: "https://gidonengineeringworks.com",
},
openGraph: {
title: "Gidon Engineering Works - Industrial Manufacturing Solutions",
description: "Premium CNC machining, fabrication, and repair services for industrial clients. Expert engineering since 2018.",
url: "https://gidonengineeringworks.com",
siteName: "Gidon Engineering Works",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/automation-engineer-maintains-solar-panel-systems-industrial-facility_482257-126793.jpg",
alt: "Gidon Engineering Works - Industrial Manufacturing Facility",
},
],
},
twitter: {
card: "summary_large_image",
title: "Gidon Engineering Works - CNC & Fabrication",
description: "Professional industrial manufacturing services in Hyderabad. Precision, reliability, expertise.",
images: [
"http://img.b2bpic.net/free-photo/automation-engineer-maintains-solar-panel-systems-industrial-facility_482257-126793.jpg",
],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -31,7 +58,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${montserrat.variable} ${inter.variable} antialiased`}>
<body
className={`${montserrat.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +72,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}