From 9dc8111a0467f8e9e17e300b8bffaa56637be15b Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 08:59:49 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b57ad6d..4b72aad 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -93,7 +93,7 @@ export default function AboutPage() { id: "owner", name: "Rajesh Patil", role: "Founder & Managing Director", - imageSrc: "http://img.b2bpic.net/free-photo/confident-european-businessman-smiling-closeup-portrait-jobs-career-campaign_53876-128975.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/confident-european-businessman-smiling-closeup-portrait-jobs-career-campaign_53876-128975.jpg?_wi=2", imageAlt: "Rajesh Patil, Founder of Patil Enterprises", }, ]} From fef3c226a497d04b7572cddfe0fc26190557d676 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 08:59:49 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 5055db0..a1c2cde 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -87,7 +87,7 @@ export default function ContactPage() { useInvertedBackground={true} mediaAnimation="slide-up" mediaPosition="right" - imageSrc="http://img.b2bpic.net/free-photo/young-woman-chooses-goods-home-interior-store_169016-19586.jpg" + imageSrc="http://img.b2bpic.net/free-photo/young-woman-chooses-goods-home-interior-store_169016-19586.jpg?_wi=9" imageAlt="Patil Enterprises showroom" inputPlaceholder="Enter your email address" buttonText="Subscribe" From a10b834af7637813c875822b1556fc9bdd2aca23 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 15 Mar 2026 08:59:50 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 57 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 49 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7eeade6..98abda4 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Poppins } 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 { Poppins } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const poppins = Poppins({ variable: "--font-poppins", @@ -20,6 +24,41 @@ const poppins = Poppins({ weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); +export const metadata: Metadata = { + title: "Patil Enterprises - Solar Systems, Inverters, Batteries & Water Purifiers", + description: "Trusted solar energy and water purification solutions for homes and businesses. Expert installation, quality products, and exceptional service in your local area.", + keywords: "solar installation near me, solar rooftop systems, battery and inverter shop, water purifier service, solar water heater dealer, renewable energy solutions", + metadataBase: new URL("https://patilenterprises.com"), + alternates: { + canonical: "https://patilenterprises.com", + }, + openGraph: { + title: "Patil Enterprises - Solar & Energy Solutions", + description: "Reliable solar systems, inverters, batteries, and water purifiers with professional installation and maintenance.", + url: "https://patilenterprises.com", + siteName: "Patil Enterprises", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/industrial-plant-managers-greet-investors-doing-handshake-showcasing-product_482257-119474.jpg", + alt: "Solar panels and energy solutions", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Patil Enterprises - Solar & Energy Solutions", + description: "Trusted solar systems, batteries, inverters, and water purifiers with expert installation.", + images: [ + "http://img.b2bpic.net/free-photo/industrial-plant-managers-greet-investors-doing-handshake-showcasing-product_482257-119474.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}