74 lines
2.5 KiB
TypeScript
74 lines
2.5 KiB
TypeScript
import type { Metadata } from "next";
|
|
import { Halant } from "next/font/google";
|
|
import { Inter } from "next/font/google";
|
|
import "./globals.css";
|
|
import "@/lib/gsap-setup";
|
|
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
import Tag from "@/tag/Tag";
|
|
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
|
import { Public_Sans } from "next/font/google";
|
|
|
|
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Sai Krishna Construction | Engineering & Surveying in Chennai',
|
|
description: 'CMDA-registered firm in Chennai offering premium residential & commercial construction, land surveying, and CMDA approval services. Building with excellence for 10+ years.',
|
|
keywords: ["construction, engineering, surveying, CMDA approval, residential, commercial, Chennai, villa, apartment, renovation, structural consultancy, land demarcation, property development"],
|
|
openGraph: {
|
|
"title": "Sai Krishna Construction | Engineering & Surveying in Chennai",
|
|
"description": "CMDA-registered firm in Chennai offering premium residential & commercial construction, land surveying, and CMDA approval services. Building with excellence for 10+ years.",
|
|
"url": "https://www.saikrishnaconstruction.com",
|
|
"siteName": "Sai Krishna Construction",
|
|
"images": [
|
|
{
|
|
"url": "http://img.b2bpic.net/free-photo/architect-showing-miniature-projects_23-2148242924.jpg",
|
|
"alt": "Modern construction site"
|
|
}
|
|
],
|
|
"type": "website"
|
|
},
|
|
twitter: {
|
|
"card": "summary_large_image",
|
|
"title": "Sai Krishna Construction | Engineering & Surveying in Chennai",
|
|
"description": "CMDA-registered firm in Chennai offering premium residential & commercial construction, land surveying, and CMDA approval services.",
|
|
"images": [
|
|
"http://img.b2bpic.net/free-photo/architect-showing-miniature-projects_23-2148242924.jpg"
|
|
]
|
|
},
|
|
robots: {
|
|
"index": true,
|
|
"follow": true
|
|
},
|
|
};
|
|
|
|
const publicSans = Public_Sans({
|
|
variable: "--font-public-sans",
|
|
subsets: ["latin"],
|
|
});
|
|
const inter = Inter({
|
|
variable: "--font-inter",
|
|
subsets: ["latin"],
|
|
});
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html lang="en" suppressHydrationWarning>
|
|
<ServiceWrapper>
|
|
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
|
<Tag />
|
|
{children}
|
|
<script
|
|
dangerouslySetInnerHTML={{
|
|
__html: `${getVisualEditScript()}`
|
|
}}
|
|
/>
|
|
</body>
|
|
</ServiceWrapper>
|
|
</html>
|
|
);
|
|
}
|