Merge version_2 into main #5

Merged
bender merged 2 commits from version_2 into main 2026-03-07 14:07:17 +00:00
2 changed files with 15 additions and 51 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${publicSans.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1425,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -169,7 +169,7 @@ export default function HomePage() {
tag="Ready to Start Your Project?"
tagIcon={Zap}
title="Planning an Infrastructure Project?"
description="Let's work together to bring your vision to life. Our team is ready to discuss your project requirements and provide expert guidance on the best solutions for your needs."
description="Get a custom project assessment and timeline from our engineering team within 24 hours. We'll review your requirements and provide expert guidance tailored to your specific needs and budget."
buttons={[
{ text: "📞 Call Now", href: "tel:+919876543210" },
{ text: "📝 Get Free Consultation", href: "/contact" },
@@ -222,4 +222,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}