Spaces:
Running
Running
File size: 43,238 Bytes
d691a5a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 |
<!DOCTYPE html>
<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> |