heroweb/examples/images/_archive/company copy.html
2024-10-31 07:24:12 +01:00

153 lines
5.2 KiB
HTML

<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BlocPower - Clean Energy Solutions</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@1/css/pico.min.css">
<style>
:root {
--primary: #00b894;
}
.hero {
text-align: center;
padding: 4rem 1rem;
background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
url('https://images.unsplash.com/photo-1613665813446-82a78c468a1d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
background-size: cover;
background-position: center;
margin: -1rem -1rem 2rem -1rem;
}
.metrics {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
text-align: center;
margin: 2rem 0;
}
.metric {
padding: 1rem;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
}
.metric h3 {
color: var(--primary);
font-size: 2.5rem;
margin: 0;
}
.team-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin: 2rem 0;
}
.team-member {
text-align: center;
}
.team-member img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 1rem;
}
.impact-section {
background: rgba(255, 255, 255, 0.05);
padding: 2rem;
border-radius: 8px;
margin: 2rem 0;
}
.tag {
display: inline-block;
padding: 0.2rem 1rem;
background: var(--primary);
border-radius: 20px;
margin: 0.2rem;
font-size: 0.9rem;
}
</style>
</head>
<body>
<main class="container">
<section class="hero">
<h1>BlocPower</h1>
<p class="tagline">Transforming America's Buildings for a Greener Future</p>
</section>
<div class="metrics">
<div class="metric">
<h3>1000+</h3>
<p>Buildings Retrofitted</p>
</div>
<div class="metric">
<h3>40%</h3>
<p>Average Energy Savings</p>
</div>
<div class="metric">
<h3>$50M+</h3>
<p>Capital Deployed</p>
</div>
</div>
<section class="impact-section">
<h2>Our Impact</h2>
<p>BlocPower is transforming America's aging buildings into greener, smarter, healthier facilities. Focusing on underserved communities, we're making clean energy accessible while creating jobs and reducing carbon emissions.</p>
<div class="tags">
<span class="tag">Clean Energy</span>
<span class="tag">Social Impact</span>
<span class="tag">Climate Tech</span>
<span class="tag">Urban Development</span>
</div>
</section>
<section>
<h2>What We Do</h2>
<div class="grid">
<div>
<h3>Building Modernization</h3>
<p>We retrofit aging buildings with modern, clean energy technology, reducing both costs and carbon footprint.</p>
</div>
<div>
<h3>Community Impact</h3>
<p>Creating green jobs and healthier living environments in underserved communities across America.</p>
</div>
</div>
</section>
<section>
<h2>Leadership Team</h2>
<div class="team-grid">
<article class="team-member">
<img src="https://images.unsplash.com/photo-1560250097-0b93528c311a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=256&q=80" alt="CEO">
<h3>Donnel Baird</h3>
<p>CEO & Founder</p>
</article>
<article class="team-member">
<img src="https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=256&q=80" alt="COO">
<h3>Keith Kinch</h3>
<p>General Manager & Co-Founder</p>
</article>
</div>
</section>
<section class="impact-section">
<h2>Investment Highlights</h2>
<ul>
<li>Series B funding led by Microsoft Climate Innovation Fund</li>
<li>Partnership with Goldman Sachs Urban Investment Group</li>
<li>Support from Kapor Capital, Andreessen Horowitz, and other leading investors</li>
</ul>
</section>
</main>
</body>
</html>