75 lines
2.6 KiB
TypeScript
75 lines
2.6 KiB
TypeScript
import type { Metadata } from "next";
|
|
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";
|
|
|
|
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<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body
|
|
className={`${montserrat.variable} ${inter.variable} antialiased`}
|
|
>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
} |