From e4bd971a9185018b8845712fd10437126e9a3798 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:43:10 +0000 Subject: [PATCH 1/7] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 8102a8f..e552963 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -51,7 +51,7 @@ export default function AboutPage() { title: "Our Mission", description: "To democratize solar energy by providing affordable, high-quality solar solutions with expert installation and lifetime support, enabling thousands of families and businesses to reduce costs and environmental impact.", tag: "Mission", - imageSrc: "http://img.b2bpic.net/free-photo/team-work-environment-project_23-2148894016.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/team-work-environment-project_23-2148894016.jpg?_wi=2", imageAlt: "Adi Solar team working together", }, { @@ -59,7 +59,7 @@ export default function AboutPage() { title: "Our Vision", description: "To become India's most trusted solar energy partner, powering a sustainable future where clean energy is the standard for every home and business across the country.", tag: "Vision", - imageSrc: "http://img.b2bpic.net/free-photo/businessmen-photovoltaics-factory-doing-financial-investments_482257-120645.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/businessmen-photovoltaics-factory-doing-financial-investments_482257-120645.jpg?_wi=2", imageAlt: "Vision of sustainable energy future", }, { @@ -67,7 +67,7 @@ export default function AboutPage() { title: "Our Values", description: "We believe in transparency, quality, and customer satisfaction. Every project is executed with precision, integrity, and a commitment to exceeding expectations.", tag: "Values", - imageSrc: "http://img.b2bpic.net/free-photo/executives-investors-photovoltaics-plant-analyzing-market-trends_482257-120507.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/executives-investors-photovoltaics-plant-analyzing-market-trends_482257-120507.jpg?_wi=2", imageAlt: "Adi Solar core values in action", }, ]} -- 2.49.1 From 640ab76d3bc7bb65ecd35ae75e9bdfa82b921959 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:43:11 +0000 Subject: [PATCH 2/7] Update src/app/calculator/page.tsx --- src/app/calculator/page.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/app/calculator/page.tsx b/src/app/calculator/page.tsx index 61e0740..5c6c177 100644 --- a/src/app/calculator/page.tsx +++ b/src/app/calculator/page.tsx @@ -54,7 +54,7 @@ export default function CalculatorPage() { }, ]} background={{ variant: "sparkles-gradient" }} - imageSrc="http://img.b2bpic.net/free-photo/team-work-environment-project_23-2148894016.jpg" + imageSrc="http://img.b2bpic.net/free-photo/team-work-environment-project_23-2148894016.jpg?_wi=3" imageAlt="Solar energy calculator interface" mediaAnimation="slide-up" frameStyle="card" @@ -72,7 +72,7 @@ export default function CalculatorPage() { title: "Instant ROI Analysis", description: "See exactly how long it takes to recover your investment with real-time calculations based on your location and usage patterns.", tag: "ROI", - imageSrc: "http://img.b2bpic.net/free-photo/businessmen-photovoltaics-factory-doing-financial-investments_482257-120645.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/businessmen-photovoltaics-factory-doing-financial-investments_482257-120645.jpg?_wi=4", imageAlt: "ROI analysis dashboard", }, { @@ -80,7 +80,7 @@ export default function CalculatorPage() { title: "Government Subsidy Integration", description: "Calculate available government subsidies and rebates for your state. Our calculator includes the latest incentive programs.", tag: "Subsidies", - imageSrc: "http://img.b2bpic.net/free-photo/executives-investors-photovoltaics-plant-analyzing-market-trends_482257-120507.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/executives-investors-photovoltaics-plant-analyzing-market-trends_482257-120507.jpg?_wi=4", imageAlt: "Government subsidy information", }, { @@ -88,7 +88,7 @@ export default function CalculatorPage() { title: "Custom System Sizing", description: "Get precise system size recommendations based on your roof space, sunlight exposure, and energy requirements.", tag: "Design", - imageSrc: "http://img.b2bpic.net/free-photo/person-near-alternative-energy-plant_23-2149192732.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/person-near-alternative-energy-plant_23-2149192732.jpg?_wi=3", imageAlt: "Custom solar system design", }, ]} -- 2.49.1 From b526990a4d071ce50eccde469acc72a18faf24fd Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 15:43:12 +0000 Subject: [PATCH 3/7] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..ac00cc2 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_Sans } 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 { DM_Sans } 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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "Adi Solar - Modern Solar Energy Solutions for Homes & Business", + description: "Get affordable, professional solar installations for residential, commercial, and industrial needs. Free consultation, lifetime support, and maximum savings guaranteed.", + keywords: "solar energy, solar panels, residential solar, commercial solar, India solar, solar installation, renewable energy, solar savings", + metadataBase: new URL("https://adisolar.com"), + alternates: { + canonical: "https://adisolar.com", + }, + openGraph: { + title: "Adi Solar - Transform to Clean Energy Today", + description: "Expert solar installations with 50,000+ happy customers. Get your free site visit and start saving on electricity.", + url: "https://adisolar.com", + siteName: "Adi Solar", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/team-work-environment-project_23-2148894016.jpg", + alt: "Adi Solar - Modern Solar Energy Solutions", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Adi Solar - Clean Energy Solutions", + description: "Transform your energy with professional solar installations.", + images: ["http://img.b2bpic.net/free-photo/team-work-environment-project_23-2148894016.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}