Merge version_1 into main #1

Merged
bender merged 7 commits from version_1 into main 2026-03-10 15:43:25 +00:00
7 changed files with 88 additions and 53 deletions

View File

@@ -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",
},
]}

View File

@@ -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",
},
]}

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -43,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -52,7 +52,7 @@ export default function HomePage() {
{ text: "Calculate Solar Savings", href: "/contact" },
]}
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=1"
imageAlt="Modern rooftop solar panels installation"
mediaAnimation="slide-up"
frameStyle="card"
@@ -102,7 +102,7 @@ export default function HomePage() {
title: "Residential Solar",
description: "Rooftop solar systems for homes. Reduce electricity bills by 80-100% and increase property value.",
tag: "Home",
imageSrc: "http://img.b2bpic.net/free-photo/specialist-technician-professional-engineer-with-laptop-tablet-maintenance-checking-installing-solar-roof-panel-factory-rooftop-sunlight-engineers-holding-tablet-check-solar-roof_609648-2148.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/specialist-technician-professional-engineer-with-laptop-tablet-maintenance-checking-installing-solar-roof-panel-factory-rooftop-sunlight-engineers-holding-tablet-check-solar-roof_609648-2148.jpg?_wi=1",
imageAlt: "Residential rooftop solar installation",
},
{
@@ -110,7 +110,7 @@ export default function HomePage() {
title: "Commercial Solar",
description: "Large-scale solar plants for businesses. Industrial-grade efficiency with ROI in 4-6 years.",
tag: "Business",
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=1",
imageAlt: "Commercial solar plant installation",
},
{
@@ -118,7 +118,7 @@ export default function HomePage() {
title: "Industrial Solar",
description: "Heavy-duty solar solutions for factories and industries. Custom designs for maximum power output.",
tag: "Industry",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-buildings-swimming-pool_116348-23.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-buildings-swimming-pool_116348-23.jpg?_wi=1",
imageAlt: "Industrial solar power plant",
},
{
@@ -126,7 +126,7 @@ export default function HomePage() {
title: "Solar Pumps",
description: "Agricultural solar pump systems. Reliable water pumping for farms without electricity costs.",
tag: "Agriculture",
imageSrc: "http://img.b2bpic.net/free-photo/natural-beautiful-winter-landscape_23-2150264614.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/natural-beautiful-winter-landscape_23-2150264614.jpg?_wi=1",
imageAlt: "Agricultural solar water pump system",
},
]}
@@ -147,7 +147,7 @@ export default function HomePage() {
title: "Survey",
description: "Free site assessment. Our experts analyze your roof, sunlight exposure, and energy requirements.",
tag: "Step 1",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-work-having-lunch_23-2148894059.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-work-having-lunch_23-2148894059.jpg?_wi=1",
imageAlt: "Solar survey and site assessment",
},
{
@@ -155,7 +155,7 @@ export default function HomePage() {
title: "Design",
description: "Custom solar system design. We create the optimal solution for your specific needs and budget.",
tag: "Step 2",
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=1",
imageAlt: "Solar system design planning",
},
{
@@ -163,7 +163,7 @@ export default function HomePage() {
title: "Installation",
description: "Professional installation by certified technicians. Complete in 2-3 days with minimal disruption.",
tag: "Step 3",
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=1",
imageAlt: "Solar panel installation",
},
{
@@ -228,35 +228,35 @@ export default function HomePage() {
id: "1",
name: "Bangalore Residential Installation",
price: "₹3,50,000",
imageSrc: "http://img.b2bpic.net/free-photo/lots-solar-panels-field-generating-electricity_23-2148895413.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/lots-solar-panels-field-generating-electricity_23-2148895413.jpg?_wi=1",
imageAlt: "10kW residential solar installation in Bangalore",
},
{
id: "2",
name: "Mumbai Commercial Plant",
price: "₹25,00,000",
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-salt-salt-farm-ready-harvest-thailand_335224-1051.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-salt-salt-farm-ready-harvest-thailand_335224-1051.jpg?_wi=1",
imageAlt: "100kW commercial solar plant in Mumbai",
},
{
id: "3",
name: "Delhi Industrial Solar",
price: "₹45,00,000",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29971.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29971.jpg?_wi=1",
imageAlt: "200kW industrial solar installation in Delhi",
},
{
id: "4",
name: "Gujarat Agricultural Pumps",
price: "₹1,50,000",
imageSrc: "http://img.b2bpic.net/free-photo/man-worker-firld-by-solar-panels_1303-15559.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-worker-firld-by-solar-panels_1303-15559.jpg?_wi=1",
imageAlt: "Solar water pumping system for farms",
},
{
id: "5",
name: "Pune Smart Home Integration",
price: "₹4,50,000",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-environmental-engineers-working_23-2149352242.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-environmental-engineers-working_23-2149352242.jpg?_wi=1",
imageAlt: "15kW solar with battery storage system",
},
]}

View File

@@ -46,35 +46,35 @@ export default function ProjectsPage() {
id: "1",
name: "Bangalore Residential Installation",
price: "₹3,50,000",
imageSrc: "http://img.b2bpic.net/free-photo/lots-solar-panels-field-generating-electricity_23-2148895413.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/lots-solar-panels-field-generating-electricity_23-2148895413.jpg?_wi=2",
imageAlt: "10kW residential solar installation in Bangalore",
},
{
id: "2",
name: "Mumbai Commercial Plant",
price: "₹25,00,000",
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-salt-salt-farm-ready-harvest-thailand_335224-1051.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-salt-salt-farm-ready-harvest-thailand_335224-1051.jpg?_wi=2",
imageAlt: "100kW commercial solar plant in Mumbai",
},
{
id: "3",
name: "Delhi Industrial Solar",
price: "₹45,00,000",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29971.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29971.jpg?_wi=2",
imageAlt: "200kW industrial solar installation in Delhi",
},
{
id: "4",
name: "Gujarat Agricultural Pumps",
price: "₹1,50,000",
imageSrc: "http://img.b2bpic.net/free-photo/man-worker-firld-by-solar-panels_1303-15559.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-worker-firld-by-solar-panels_1303-15559.jpg?_wi=2",
imageAlt: "Solar water pumping system for farms",
},
{
id: "5",
name: "Pune Smart Home Integration",
price: "₹4,50,000",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-environmental-engineers-working_23-2149352242.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-environmental-engineers-working_23-2149352242.jpg?_wi=2",
imageAlt: "15kW solar with battery storage system",
},
]}

View File

@@ -81,7 +81,7 @@ export default function ServicesPage() {
title: "Residential Solar",
description: "Rooftop solar systems for homes. Reduce electricity bills by 80-100% and increase property value.",
tag: "Home",
imageSrc: "http://img.b2bpic.net/free-photo/specialist-technician-professional-engineer-with-laptop-tablet-maintenance-checking-installing-solar-roof-panel-factory-rooftop-sunlight-engineers-holding-tablet-check-solar-roof_609648-2148.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/specialist-technician-professional-engineer-with-laptop-tablet-maintenance-checking-installing-solar-roof-panel-factory-rooftop-sunlight-engineers-holding-tablet-check-solar-roof_609648-2148.jpg?_wi=2",
imageAlt: "Residential rooftop solar installation",
},
{
@@ -89,7 +89,7 @@ export default function ServicesPage() {
title: "Commercial Solar",
description: "Large-scale solar plants for businesses. Industrial-grade efficiency with ROI in 4-6 years.",
tag: "Business",
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=3",
imageAlt: "Commercial solar plant installation",
},
{
@@ -97,7 +97,7 @@ export default function ServicesPage() {
title: "Industrial Solar",
description: "Heavy-duty solar solutions for factories and industries. Custom designs for maximum power output.",
tag: "Industry",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-buildings-swimming-pool_116348-23.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-buildings-swimming-pool_116348-23.jpg?_wi=2",
imageAlt: "Industrial solar power plant",
},
{
@@ -105,7 +105,7 @@ export default function ServicesPage() {
title: "Solar Pumps",
description: "Agricultural solar pump systems. Reliable water pumping for farms without electricity costs.",
tag: "Agriculture",
imageSrc: "http://img.b2bpic.net/free-photo/natural-beautiful-winter-landscape_23-2150264614.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/natural-beautiful-winter-landscape_23-2150264614.jpg?_wi=2",
imageAlt: "Agricultural solar water pump system",
},
]}
@@ -128,7 +128,7 @@ export default function ServicesPage() {
title: "Survey",
description: "Free site assessment. Our experts analyze your roof, sunlight exposure, and energy requirements.",
tag: "Step 1",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-work-having-lunch_23-2148894059.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-work-having-lunch_23-2148894059.jpg?_wi=2",
imageAlt: "Solar survey and site assessment",
},
{
@@ -136,7 +136,7 @@ export default function ServicesPage() {
title: "Design",
description: "Custom solar system design. We create the optimal solution for your specific needs and budget.",
tag: "Step 2",
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=3",
imageAlt: "Solar system design planning",
},
{
@@ -144,7 +144,7 @@ export default function ServicesPage() {
title: "Installation",
description: "Professional installation by certified technicians. Complete in 2-3 days with minimal disruption.",
tag: "Step 3",
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=2",
imageAlt: "Solar panel installation",
},
]}

View File

@@ -53,7 +53,7 @@ export default function SubsidyPage() {
},
]}
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=4"
imageAlt="Government solar subsidy schemes"
mediaAnimation="slide-up"
frameStyle="card"
@@ -71,7 +71,7 @@ export default function SubsidyPage() {
title: "Pradhan Mantri Kisan Urja Suraksha uttam Mahabhiyaan",
description: "PM-KUSUM Scheme provides subsidy of up to 90% for solar installations in agricultural applications and off-grid systems across rural India.",
tag: "Agriculture",
imageSrc: "http://img.b2bpic.net/free-photo/natural-beautiful-winter-landscape_23-2150264614.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/natural-beautiful-winter-landscape_23-2150264614.jpg?_wi=3",
imageAlt: "PM-KUSUM agricultural solar scheme",
},
{
@@ -79,7 +79,7 @@ export default function SubsidyPage() {
title: "Pradhan Mantri Residential Solar Rooftop Scheme",
description: "PMRSSRY offers central subsidy of up to 40% for residential rooftop solar installations on your home, making solar more affordable for middle-class families.",
tag: "Residential",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-work-having-lunch_23-2148894059.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/colleagues-work-having-lunch_23-2148894059.jpg?_wi=3",
imageAlt: "PM residential rooftop solar scheme",
},
{
@@ -87,7 +87,7 @@ export default function SubsidyPage() {
title: "State-Specific Subsidies & Tax Benefits",
description: "Additional subsidies vary by state including MNRE schemes, state solar policies, and income tax exemptions. Each state offers unique incentives to promote renewable energy.",
tag: "State Benefits",
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=5",
imageAlt: "State-specific solar subsidy information",
},
]}
@@ -107,35 +107,35 @@ export default function SubsidyPage() {
id: "1",
name: "Residential Rooftop (1-10 kW)",
price: "₹2-5 lakhs subsidy",
imageSrc: "http://img.b2bpic.net/free-photo/lots-solar-panels-field-generating-electricity_23-2148895413.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/lots-solar-panels-field-generating-electricity_23-2148895413.jpg?_wi=3",
imageAlt: "Residential rooftop solar subsidy",
},
{
id: "2",
name: "Commercial Solar (10-100 kW)",
price: "₹8-15 lakhs subsidy",
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-salt-salt-farm-ready-harvest-thailand_335224-1051.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/aerial-view-salt-salt-farm-ready-harvest-thailand_335224-1051.jpg?_wi=3",
imageAlt: "Commercial solar subsidy program",
},
{
id: "3",
name: "Agricultural Solar Pumps",
price: "₹80,000-3 lakhs subsidy",
imageSrc: "http://img.b2bpic.net/free-photo/man-worker-firld-by-solar-panels_1303-15559.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-worker-firld-by-solar-panels_1303-15559.jpg?_wi=3",
imageAlt: "Agricultural solar pump subsidy",
},
{
id: "4",
name: "Industrial Solar Plants",
price: "₹20-50 lakhs subsidy",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-environmental-engineers-working_23-2149352242.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-environmental-engineers-working_23-2149352242.jpg?_wi=3",
imageAlt: "Industrial solar subsidy programs",
},
{
id: "5",
name: "Off-Grid Solar Systems",
price: "₹1.5-4 lakhs subsidy",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29971.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/man-with-white-helmet-near-solar-panel_1157-29971.jpg?_wi=3",
imageAlt: "Off-grid solar system subsidy",
},
]}