diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3e5e55c..36b7348 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,63 +1,28 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", - subsets: ["latin"], +const geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "MV Patil Constructions - EPC & Infrastructure Solutions", - description: "Professional EPC contractor specializing in industrial construction, renewable energy infrastructure, and commercial projects. Proven expertise in on-time delivery and quality standards.", - keywords: "construction company, EPC contractor, infrastructure contractor, industrial construction, renewable energy infrastructure, commercial construction", - openGraph: { - title: "MV Patil Constructions - Infrastructure & Construction Solutions", - description: "Engineering, Procurement, Construction & Installation Services for Industrial and Commercial Projects", - url: "https://www.mvpatilconstructions.com", - siteName: "MV Patil Constructions", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/woman-men-looking-laptop-construction_259150-57850.jpg", - alt: "MV Patil Constructions", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "MV Patil Constructions", - description: "Infrastructure & Construction Excellence", - images: ["http://img.b2bpic.net/free-photo/woman-men-looking-laptop-construction_259150-57850.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "MV Patil Constructions - EPC, Infrastructure & Industrial Solutions", description: "Engineering, Procurement, Construction, Installation & Maintenance Services for Industrial and Commercial Projects"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +