Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Prosumer Smart Home Guide</title> | |
<script src="https://cdn.tailwindcss.com"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> | |
<style> | |
.gradient-bg { | |
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); | |
} | |
.energy-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); | |
} | |
.timeline-item:not(:last-child)::after { | |
content: ''; | |
position: absolute; | |
left: 24px; | |
top: 32px; | |
height: calc(100% - 32px); | |
width: 2px; | |
background: #e5e7eb; | |
} | |
@keyframes pulse { | |
0%, 100% { | |
opacity: 1; | |
} | |
50% { | |
opacity: 0.5; | |
} | |
} | |
.animate-pulse-slow { | |
animation: pulse 3s infinite; | |
} | |
</style> | |
</head> | |
<body class="font-sans bg-gray-50"> | |
<!-- Header --> | |
<header class="gradient-bg py-16 px-4 sm:px-6 lg:px-8"> | |
<div class="max-w-7xl mx-auto text-center"> | |
<h1 class="text-4xl md:text-5xl font-bold text-gray-800 mb-4">Transform Your Home into a <span class="text-green-600">Prosumer</span> Powerhouse</h1> | |
<p class="text-xl text-gray-600 max-w-3xl mx-auto"> | |
Learn how to transition from energy consumer to energy producer with smart home technology | |
</p> | |
<div class="mt-8"> | |
<button class="bg-green-600 hover:bg-green-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300 transform hover:scale-105"> | |
Start Your Journey | |
</button> | |
</div> | |
</div> | |
</header> | |
<!-- Main Content --> | |
<main class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12"> | |
<!-- What is Prosumerism --> | |
<section class="mb-16"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">What is <span class="text-green-600">Prosumerism</span>?</h2> | |
<div class="w-24 h-1 bg-green-500 mx-auto"></div> | |
</div> | |
<div class="grid md:grid-cols-2 gap-8 items-center"> | |
<div> | |
<p class="text-lg text-gray-600 mb-6"> | |
Prosumerism represents the evolution from passive energy consumers to active participants in energy production and management. As a prosumer, your home becomes both a consumer and producer of energy, creating a more sustainable and efficient ecosystem. | |
</p> | |
<div class="bg-blue-50 p-6 rounded-lg border-l-4 border-blue-500"> | |
<div class="flex"> | |
<div class="flex-shrink-0"> | |
<i class="fas fa-lightbulb text-blue-500 text-2xl"></i> | |
</div> | |
<div class="ml-3"> | |
<p class="text-sm text-blue-700"> | |
The average prosumer household can offset 60-100% of its energy consumption while contributing clean energy back to the grid. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="bg-white p-6 rounded-xl shadow-lg"> | |
<img src="https://images.unsplash.com/photo-1613665813446-82a78c468a1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=800&q=80" alt="Solar panels on a house" class="w-full h-auto rounded-lg"> | |
</div> | |
</div> | |
</section> | |
<!-- Key Components --> | |
<section class="mb-16"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Key Components of a <span class="text-green-600">Prosumer</span> Home</h2> | |
<div class="w-24 h-1 bg-green-500 mx-auto"></div> | |
</div> | |
<div class="grid sm:grid-cols-2 lg:grid-cols-4 gap-6"> | |
<!-- Card 1 --> | |
<div class="energy-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex items-center justify-center w-16 h-16 bg-green-100 rounded-full mb-4 mx-auto"> | |
<i class="fas fa-solar-panel text-green-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">Solar PV System</h3> | |
<p class="text-gray-600 text-center"> | |
Photovoltaic panels convert sunlight into electricity, forming the foundation of your energy production. | |
</p> | |
</div> | |
</div> | |
<!-- Card 2 --> | |
<div class="energy-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex items-center justify-center w-16 h-16 bg-blue-100 rounded-full mb-4 mx-auto"> | |
<i class="fas fa-battery-three-quarters text-blue-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">Energy Storage</h3> | |
<p class="text-gray-600 text-center"> | |
Battery systems store excess energy for use during peak times or when production is low. | |
</p> | |
</div> | |
</div> | |
<!-- Card 3 --> | |
<div class="energy-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex items-center justify-center w-16 h-16 bg-purple-100 rounded-full mb-4 mx-auto"> | |
<i class="fas fa-network-wired text-purple-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">Smart Energy Management</h3> | |
<p class="text-gray-600 text-center"> | |
AI-powered systems optimize energy flows between production, storage, consumption, and the grid. | |
</p> | |
</div> | |
</div> | |
<!-- Card 4 --> | |
<div class="energy-card bg-white rounded-xl shadow-md overflow-hidden transition duration-300"> | |
<div class="p-6"> | |
<div class="flex items-center justify-center w-16 h-16 bg-yellow-100 rounded-full mb-4 mx-auto"> | |
<i class="fas fa-chart-line text-yellow-600 text-2xl"></i> | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2 text-center">Grid Integration</h3> | |
<p class="text-gray-600 text-center"> | |
Net metering and grid feedback capabilities allow you to sell excess energy back to the utility company. | |
</p> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Implementation Roadmap --> | |
<section class="mb-16"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Implementation <span class="text-green-600">Roadmap</span></h2> | |
<div class="w-24 h-1 bg-green-500 mx-auto"></div> | |
</div> | |
<div class="relative"> | |
<!-- Timeline --> | |
<div class="space-y-8"> | |
<!-- Step 1 --> | |
<div class="timeline-item relative pl-16"> | |
<div class="absolute left-0 top-0 flex items-center justify-center w-12 h-12 rounded-full bg-green-100 text-green-600"> | |
<span class="font-bold">1</span> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Energy Audit & Planning</h3> | |
<p class="text-gray-600 mb-4"> | |
Conduct a thorough energy audit of your home to understand your consumption patterns and identify optimization opportunities. | |
</p> | |
<div class="flex flex-wrap gap-2"> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">1-2 weeks</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">$200-$500</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">Basic</span> | |
</div> | |
</div> | |
</div> | |
<!-- Step 2 --> | |
<div class="timeline-item relative pl-16"> | |
<div class="absolute left-0 top-0 flex items-center justify-center w-12 h-12 rounded-full bg-green-100 text-green-600"> | |
<span class="font-bold">2</span> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Solar Panel Installation</h3> | |
<p class="text-gray-600 mb-4"> | |
Install photovoltaic panels sized appropriately for your energy needs and roof space. Consider future expansion. | |
</p> | |
<div class="flex flex-wrap gap-2"> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">2-6 weeks</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">$15k-$30k</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">Professional</span> | |
</div> | |
</div> | |
</div> | |
<!-- Step 3 --> | |
<div class="timeline-item relative pl-16"> | |
<div class="absolute left-0 top-0 flex items-center justify-center w-12 h-12 rounded-full bg-green-100 text-green-600"> | |
<span class="font-bold">3</span> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Energy Storage System</h3> | |
<p class="text-gray-600 mb-4"> | |
Add battery storage to capture excess solar production for use during evenings or grid outages. | |
</p> | |
<div class="flex flex-wrap gap-2"> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">1-2 weeks</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">$8k-$15k</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">Professional</span> | |
</div> | |
</div> | |
</div> | |
<!-- Step 4 --> | |
<div class="timeline-item relative pl-16"> | |
<div class="absolute left-0 top-0 flex items-center justify-center w-12 h-12 rounded-full bg-green-100 text-green-600"> | |
<span class="font-bold">4</span> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Smart Home Integration</h3> | |
<p class="text-gray-600 mb-4"> | |
Implement smart thermostats, lighting, and appliances that can respond to energy availability and pricing signals. | |
</p> | |
<div class="flex flex-wrap gap-2"> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">Ongoing</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">$1k-$5k</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">DIY/Pro</span> | |
</div> | |
</div> | |
</div> | |
<!-- Step 5 --> | |
<div class="timeline-item relative pl-16"> | |
<div class="absolute left-0 top-0 flex items-center justify-center w-12 h-12 rounded-full bg-green-100 text-green-600"> | |
<span class="font-bold">5</span> | |
</div> | |
<div class="bg-white p-6 rounded-lg shadow"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Grid Connection & Optimization</h3> | |
<p class="text-gray-600 mb-4"> | |
Set up net metering with your utility and implement energy management software to maximize your prosumer benefits. | |
</p> | |
<div class="flex flex-wrap gap-2"> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">2-4 weeks</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">$500-$2k</span> | |
<span class="px-3 py-1 bg-gray-100 text-gray-800 rounded-full text-sm">Professional</span> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Skills & Knowledge --> | |
<section class="mb-16"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Required <span class="text-green-600">Skills & Knowledge</span></h2> | |
<div class="w-24 h-1 bg-green-500 mx-auto"></div> | |
</div> | |
<div class="grid md:grid-cols-2 gap-8"> | |
<div class="bg-white p-6 rounded-xl shadow"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-4 flex items-center"> | |
<i class="fas fa-graduation-cap text-green-600 mr-3"></i> Technical Knowledge | |
</h3> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Basic electrical systems understanding</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Solar energy fundamentals</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Battery storage technologies</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Smart home automation</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Energy monitoring systems</span> | |
</li> | |
</ul> | |
</div> | |
<div class="bg-white p-6 rounded-xl shadow"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-4 flex items-center"> | |
<i class="fas fa-tools text-green-600 mr-3"></i> Practical Skills | |
</h3> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>DIY home improvement skills (basic)</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>System monitoring and maintenance</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Data analysis for energy optimization</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Understanding of local regulations</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check-circle text-green-500 mt-1 mr-2"></i> | |
<span>Financial planning for ROI calculation</span> | |
</li> | |
</ul> | |
</div> | |
</div> | |
</section> | |
<!-- Cost Breakdown --> | |
<section class="mb-16"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Estimated <span class="text-green-600">Cost Breakdown</span></h2> | |
<div class="w-24 h-1 bg-green-500 mx-auto"></div> | |
</div> | |
<div class="bg-white rounded-xl shadow overflow-hidden"> | |
<div class="grid md:grid-cols-3 divide-y md:divide-y-0 md:divide-x"> | |
<!-- Budget Tier --> | |
<div class="p-6"> | |
<div class="text-center mb-6"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Basic Setup</h3> | |
<p class="text-gray-500">Partial energy independence</p> | |
<div class="mt-4"> | |
<span class="text-3xl font-bold text-green-600">$15k-$25k</span> | |
</div> | |
</div> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>3-5kW solar system</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Small battery backup (5-10kWh)</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Basic energy monitoring</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>40-60% energy offset</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Mid Tier --> | |
<div class="p-6 bg-gray-50"> | |
<div class="text-center mb-6"> | |
<div class="inline-block px-3 py-1 bg-green-100 text-green-800 rounded-full text-sm font-medium mb-2"> | |
Most Popular | |
</div> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Advanced Setup</h3> | |
<p class="text-gray-500">Near energy independence</p> | |
<div class="mt-4"> | |
<span class="text-3xl font-bold text-green-600">$25k-$40k</span> | |
</div> | |
</div> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>6-10kW solar system</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Medium battery (10-20kWh)</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Smart energy management</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>70-90% energy offset</span> | |
</li> | |
</ul> | |
</div> | |
<!-- Premium Tier --> | |
<div class="p-6"> | |
<div class="text-center mb-6"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-2">Premium Setup</h3> | |
<p class="text-gray-500">Full energy independence</p> | |
<div class="mt-4"> | |
<span class="text-3xl font-bold text-green-600">$40k-$70k+</span> | |
</div> | |
</div> | |
<ul class="space-y-3"> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>10-15kW+ solar system</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Large battery (20-30kWh+)</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>AI-powered optimization</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>100%+ energy offset</span> | |
</li> | |
</ul> | |
</div> | |
</div> | |
<div class="bg-gray-100 px-6 py-4 border-t border-gray-200"> | |
<p class="text-sm text-gray-600"> | |
<i class="fas fa-info-circle text-green-600 mr-2"></i> Prices vary by location, incentives, and specific equipment choices. ROI typically 5-10 years. | |
</p> | |
</div> | |
</div> | |
</section> | |
<!-- Benefits & Challenges --> | |
<section class="mb-16"> | |
<div class="text-center mb-12"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Benefits & <span class="text-green-600">Challenges</span></h2> | |
<div class="w-24 h-1 bg-green-500 mx-auto"></div> | |
</div> | |
<div class="grid md:grid-cols-2 gap-8"> | |
<div class="bg-green-50 p-6 rounded-xl border border-green-200"> | |
<h3 class="text-xl font-semibold text-green-800 mb-4 flex items-center"> | |
<i class="fas fa-thumbs-up text-green-600 mr-3"></i> Benefits | |
</h3> | |
<div class="space-y-4"> | |
<div class="flex"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-green-100 text-green-600"> | |
<i class="fas fa-dollar-sign text-sm"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<h4 class="text-md font-medium text-green-800">Reduced Energy Bills</h4> | |
<p class="mt-1 text-sm text-green-700"> | |
Significant long-term savings with potential to eliminate electricity bills entirely. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-green-100 text-green-600"> | |
<i class="fas fa-leaf text-sm"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<h4 class="text-md font-medium text-green-800">Environmental Impact</h4> | |
<p class="mt-1 text-sm text-green-700"> | |
Dramatically reduce your carbon footprint and contribute to cleaner energy grids. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-green-100 text-green-600"> | |
<i class="fas fa-bolt text-sm"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<h4 class="text-md font-medium text-green-800">Energy Independence</h4> | |
<p class="mt-1 text-sm text-green-700"> | |
Protection from power outages and energy price fluctuations. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-green-100 text-green-600"> | |
<i class="fas fa-chart-line text-sm"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<h4 class="text-md font-medium text-green-800">Potential Revenue</h4> | |
<p class="mt-1 text-sm text-green-700"> | |
Earn money by selling excess energy back to the grid in many locations. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="bg-red-50 p-6 rounded-xl border border-red-200"> | |
<h3 class="text-xl font-semibold text-red-800 mb-4 flex items-center"> | |
<i class="fas fa-exclamation-triangle text-red-600 mr-3"></i> Challenges | |
</h3> | |
<div class="space-y-4"> | |
<div class="flex"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-red-100 text-red-600"> | |
<i class="fas fa-dollar-sign text-sm"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<h4 class="text-md font-medium text-red-800">Upfront Costs</h4> | |
<p class="mt-1 text-sm text-red-700"> | |
Significant initial investment required, though financing options are available. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-red-100 text-red-600"> | |
<i class="fas fa-file-alt text-sm"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<h4 class="text-md font-medium text-red-800">Regulatory Hurdles</h4> | |
<p class="mt-1 text-sm text-red-700"> | |
Local regulations and utility policies can complicate implementation. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-red-100 text-red-600"> | |
<i class="fas fa-home text-sm"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<h4 class="text-md font-medium text-red-800">Space Requirements</h4> | |
<p class="mt-1 text-sm text-red-700"> | |
Need adequate roof space or land for solar panels and space for battery storage. | |
</p> | |
</div> | |
</div> | |
<div class="flex"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-8 w-8 rounded-full bg-red-100 text-red-600"> | |
<i class="fas fa-cogs text-sm"></i> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<h4 class="text-md font-medium text-red-800">Technical Complexity</h4> | |
<p class="mt-1 text-sm text-red-700"> | |
Requires learning new systems and potentially troubleshooting technical issues. | |
</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
<!-- Getting Started --> | |
<section class="bg-white rounded-xl shadow-lg overflow-hidden mb-16"> | |
<div class="grid md:grid-cols-2"> | |
<div class="p-8 sm:p-10"> | |
<h2 class="text-3xl font-bold text-gray-800 mb-4">Ready to Become a <span class="text-green-600">Prosumer</span>?</h2> | |
<p class="text-lg text-gray-600 mb-6"> | |
Start your journey toward energy independence with these first steps: | |
</p> | |
<div class="space-y-4"> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-green-100 text-green-600"> | |
<span class="text-sm font-medium">1</span> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-base text-gray-700"> | |
<span class="font-medium">Research local incentives</span> - Tax credits, rebates, and net metering policies | |
</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-green-100 text-green-600"> | |
<span class="text-sm font-medium">2</span> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-base text-gray-700"> | |
<span class="font-medium">Get multiple quotes</span> - Compare solar installers in your area | |
</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-green-100 text-green-600"> | |
<span class="text-sm font-medium">3</span> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-base text-gray-700"> | |
<span class="font-medium">Start small</span> - Begin with energy monitoring before major investments | |
</p> | |
</div> | |
</div> | |
<div class="flex items-start"> | |
<div class="flex-shrink-0 mt-1"> | |
<div class="flex items-center justify-center h-6 w-6 rounded-full bg-green-100 text-green-600"> | |
<span class="text-sm font-medium">4</span> | |
</div> | |
</div> | |
<div class="ml-3"> | |
<p class="text-base text-gray-700"> | |
<span class="font-medium">Educate yourself</span> - Take online courses about solar and energy storage | |
</p> | |
</div> | |
</div> | |
</div> | |
<div class="mt-8"> | |
<button class="w-full bg-green-600 hover:bg-green-700 text-white font-medium py-3 px-6 rounded-lg transition duration-300"> | |
Download Starter Guide <i class="fas fa-arrow-down ml-2"></i> | |
</button> | |
</div> | |
</div> | |
<div class="bg-green-50 flex items-center justify-center p-8"> | |
<div class="relative w-full max-w-md"> | |
<div class="absolute -top-6 -left-6 w-32 h-32 bg-green-200 rounded-full opacity-50 animate-pulse-slow"></div> | |
<div class="absolute -bottom-6 -right-6 w-32 h-32 bg-green-300 rounded-full opacity-50 animate-pulse-slow" style="animation-delay: 1.5s;"></div> | |
<div class="relative bg-white p-8 rounded-xl shadow-md"> | |
<h3 class="text-xl font-semibold text-gray-800 mb-4">Free Prosumer Starter Kit</h3> | |
<ul class="space-y-3 mb-6"> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Local incentive finder</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Solar calculator</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Vetted installer directory</span> | |
</li> | |
<li class="flex items-start"> | |
<i class="fas fa-check text-green-500 mt-1 mr-2"></i> | |
<span>Learning resources</span> | |
</li> | |
</ul> | |
<div class="flex items-center"> | |
<input type="email" placeholder="Your email address" class="flex-1 border border-gray-300 rounded-l-lg py-2 px-4 focus:outline-none focus:ring-2 focus:ring-green-500 focus:border-transparent"> | |
<button class="bg-green-600 hover:bg-green-700 text-white py-2 px-4 rounded-r-lg transition duration-300"> | |
Send <i class="fas fa-paper-plane ml-1"></i> | |
</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</section> | |
</main> | |
<!-- Footer --> | |
<footer class="bg-gray-800 text-white py-12 px-4 sm:px-6 lg:px-8"> | |
<div class="max-w-7xl mx-auto"> | |
<div class="grid md:grid-cols-4 gap-8"> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Prosumer Homes</h3> | |
<p class="text-gray-400"> | |
Empowering homeowners to take control of their energy future through smart, sustainable solutions. | |
</p> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Resources</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Blog</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Calculators</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Case Studies</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">FAQ</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Legal</h3> | |
<ul class="space-y-2"> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Privacy Policy</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Terms of Service</a></li> | |
<li><a href="#" class="text-gray-400 hover:text-white transition">Disclosures</a></li> | |
</ul> | |
</div> | |
<div> | |
<h3 class="text-lg font-semibold mb-4">Connect</h3> | |
<div class="flex space-x-4 mb-4"> | |
<a href="#" class="text-gray-400 hover:text-white transition"> | |
<i class="fab fa-facebook-f"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition"> | |
<i class="fab fa-twitter"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition"> | |
<i class="fab fa-instagram"></i> | |
</a> | |
<a href="#" class="text-gray-400 hover:text-white transition"> | |
<i class="fab fa-youtube"></i> | |
</a> | |
</div> | |
<p class="text-gray-400"> | |
<i class="fas fa-envelope mr-2"></i> [email protected] | |
</p> | |
</div> | |
</div> | |
<div class="border-t border-gray-700 mt-8 pt-8 text-center text-gray-400"> | |
<p>© 2023 Prosumer Homes. All rights reserved.</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Simple script for demo purposes | |
document.addEventListener('DOMContentLoaded', function() { | |
// Smooth scroll for anchor links | |
document.querySelectorAll('a[href^="#"]').forEach(anchor => { | |
anchor.addEventListener('click', function (e) { | |
e.preventDefault(); | |
document.querySelector(this.getAttribute('href')).scrollIntoView({ | |
behavior: 'smooth' | |
}); | |
}); | |
}); | |
// Demo animation for the energy cards | |
const energyCards = document.querySelectorAll('.energy-card'); | |
energyCards.forEach(card => { | |
card.addEventListener('mouseenter', function() { | |
this.style.transition = 'all 0.3s ease'; | |
}); | |
}); | |
// Form submission handling (demo) | |
const form = document.querySelector('form'); | |
if(form) { | |
form.addEventListener('submit', function(e) { | |
e.preventDefault(); | |
alert('Thank you for your interest! A starter kit will be sent to your email.'); | |
}); | |
} | |
}); | |
</script> | |
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=zombieofCrypto/prosumerism" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body> | |
</html> |