Spaces:
Running
Running
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Unity Fleet - Charging Hub Interface</title> | |
<link rel="stylesheet" href="../styles.css"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | |
<link rel="preconnect" href="https://fonts.googleapis.com"> | |
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
<style> | |
/* MVP Component specific styles */ | |
.component-container { | |
max-width: 1200px; | |
margin: 0 auto; | |
padding: 2rem; | |
} | |
.component-header { | |
text-align: center; | |
margin-bottom: 3rem; | |
} | |
.component-header h1 { | |
font-size: 2.5rem; | |
margin-bottom: 1rem; | |
background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2)); | |
-webkit-background-clip: text; | |
background-clip: text; | |
-webkit-text-fill-color: transparent; | |
} | |
.component-header p { | |
font-size: 1.2rem; | |
max-width: 800px; | |
margin: 0 auto; | |
opacity: 0.8; | |
} | |
.component-content { | |
background: var(--glass-bg); | |
border: 1px solid var(--glass-border); | |
border-radius: 16px; | |
padding: 2rem; | |
margin-bottom: 3rem; | |
backdrop-filter: blur(10px); | |
} | |
.back-to-home { | |
display: inline-block; | |
margin-top: 2rem; | |
padding: 0.8rem 1.5rem; | |
background: transparent; | |
border: 1px solid var(--accent-color-1); | |
color: var(--accent-color-1); | |
border-radius: 4px; | |
font-family: var(--font-primary); | |
font-weight: 500; | |
text-transform: uppercase; | |
letter-spacing: 1px; | |
transition: all var(--transition-medium); | |
} | |
.back-to-home:hover { | |
background: rgba(0, 224, 255, 0.1); | |
transform: translateY(-3px); | |
} | |
/* Charging Hub specific styles */ | |
.charging-hub-container { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
padding: 1rem; | |
} | |
.hub-interface { | |
width: 100%; | |
max-width: 800px; | |
background-color: #0B0B0F; | |
border-radius: 16px; | |
overflow: hidden; | |
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); | |
border: 1px solid rgba(0, 224, 255, 0.3); | |
margin-bottom: 2rem; | |
} | |
.hub-header { | |
background: linear-gradient(90deg, rgba(0, 224, 255, 0.2), rgba(53, 242, 219, 0.2)); | |
padding: 1.5rem; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
} | |
.hub-header h2 { | |
margin: 0; | |
font-size: 1.5rem; | |
} | |
.hub-status { | |
display: flex; | |
align-items: center; | |
} | |
.status-indicator { | |
width: 12px; | |
height: 12px; | |
border-radius: 50%; | |
background-color: #4CAF50; | |
margin-right: 8px; | |
} | |
.hub-body { | |
padding: 2rem; | |
} | |
.hub-section { | |
margin-bottom: 2rem; | |
} | |
.hub-section h3 { | |
margin-top: 0; | |
margin-bottom: 1rem; | |
font-size: 1.2rem; | |
color: var(--accent-color-1); | |
} | |
.charging-stations { | |
display: grid; | |
grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); | |
gap: 1rem; | |
} | |
.station-card { | |
background: rgba(255, 255, 255, 0.05); | |
border-radius: 12px; | |
padding: 1rem; | |
border: 1px solid rgba(255, 255, 255, 0.1); | |
transition: all 0.3s ease; | |
} | |
.station-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); | |
border-color: var(--accent-color-1); | |
} | |
.station-card.available { | |
border-left: 4px solid #4CAF50; | |
} | |
.station-card.in-use { | |
border-left: 4px solid #FFC107; | |
} | |
.station-card.unavailable { | |
border-left: 4px solid #F44336; | |
opacity: 0.7; | |
} | |
.station-header { | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
margin-bottom: 0.5rem; | |
} | |
.station-header h4 { | |
margin: 0; | |
font-size: 1rem; | |
} | |
.station-type { | |
font-size: 0.8rem; | |
opacity: 0.7; | |
margin-bottom: 0.5rem; | |
} | |
.station-details { | |
font-size: 0.9rem; | |
} | |
.station-details p { | |
margin: 0.3rem 0; | |
} | |
.station-actions { | |
margin-top: 1rem; | |
display: flex; | |
justify-content: center; | |
} | |
.station-actions button { | |
padding: 0.5rem 1rem; | |
font-size: 0.8rem; | |
border-radius: 4px; | |
background: linear-gradient(90deg, var(--accent-color-1), var(--accent-color-2)); | |
color: #000; | |
border: none; | |
cursor: pointer; | |
width: 100%; | |
} | |
.station-actions button:disabled { | |
background: rgba(255, 255, 255, 0.1); | |
color: rgba(255, 255, 255, 0.5); | |
cursor: not-allowed; | |
} | |
.hub-amenities { | |
display: grid; | |
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); | |
gap: 1rem; | |
} | |
.amenity-card { | |
background: rgba(255, 255, 255, 0.05); | |
border-radius: 12px; | |
padding: 1rem; | |
border: 1px solid rgba(255, 255, 255, 0.1); | |
text-align: center; | |
transition: all 0.3s ease; | |
} | |
.amenity-card:hover { | |
transform: translateY(-5px); | |
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); | |
} | |
.amenity-icon { | |
font-size: 2rem; | |
margin-bottom: 0.5rem; | |
color: var(--accent-color-1); | |
} | |
.amenity-name { | |
font-weight: bold; | |
margin-bottom: 0.5rem; | |
} | |
.amenity-description { | |
font-size: 0.9rem; | |
opacity: 0.8; | |
} | |
.hub-footer { | |
background: rgba(0, 0, 0, 0.3); | |
padding: 1rem; | |
display: flex; | |
justify-content: space-between; | |
align-items: center; | |
border-top: 1px solid rgba(255, 255, 255, 0.1); | |
} | |
.hub-footer-links { | |
display: flex; | |
} | |
.hub-footer-links a { | |
margin-right: 1rem; | |
color: var(--accent-color-1); | |
font-size: 0.9rem; | |
} | |
.hub-footer-info { | |
font-size: 0.9rem; | |
opacity: 0.7; | |
} | |
/* Energy usage meter */ | |
.energy-meter { | |
width: 100%; | |
height: 8px; | |
background: rgba(255, 255, 255, 0.1); | |
border-radius: 4px; | |
overflow: hidden; | |
margin-top: 0.5rem; | |
} | |
.energy-meter-fill { | |
height: 100%; | |
background: linear-gradient(90deg, #4CAF50, #FFC107, #F44336); | |
width: 0%; | |
transition: width 1s ease; | |
} | |
</style> | |
</head> | |
<body> | |
<div class="noise-overlay"></div> | |
<header> | |
<nav> | |
<div class="logo">UNITY FLEET</div> | |
<div class="nav-links"> | |
<a href="../index.html#what-is-the-link">What is The Link</a> | |
<a href="../index.html#subscription-tiers">Subscription Tiers</a> | |
<a href="../index.html#impact-equity">Impact & Equity</a> | |
<a href="../index.html#tokenization">ChainLink Tokenization</a> | |
<a href="../index.html#rural-plan">Rural Revitalization</a> | |
<a href="../index.html#mvp-showcase">MVP Showcase</a> | |
</div> | |
<div class="mobile-nav-toggle"> | |
<i class="fas fa-bars"></i> | |
</div> | |
</nav> | |
</header> | |
<main class="component-container"> | |
<div class="component-header"> | |
<h1>CHARGING HUB INTERFACE</h1> | |
<p>Experience The Link charging stations with our interactive hub interface, featuring real-time availability, energy monitoring, and premium amenities.</p> | |
</div> | |
<div class="component-content"> | |
<div class="charging-hub-container"> | |
<div class="hub-interface"> | |
<div class="hub-header"> | |
<h2>The Link - Downtown Springfield</h2> | |
<div class="hub-status"> | |
<div class="status-indicator"></div> | |
<span>Online | 6/8 Stations Available</span> | |
</div> | |
</div> | |
<div class="hub-body"> | |
<div class="hub-section"> | |
<h3>Charging Stations</h3> | |
<div class="charging-stations"> | |
<div class="station-card available"> | |
<div class="station-header"> | |
<h4>Station 1</h4> | |
<span>Available</span> | |
</div> | |
<div class="station-type">DC Fast Charger | 350kW</div> | |
<div class="station-details"> | |
<p>Power Output: 350kW</p> | |
<p>Connector: CCS</p> | |
</div> | |
<div class="station-actions"> | |
<button>Reserve</button> | |
</div> | |
</div> | |
<div class="station-card available"> | |
<div class="station-header"> | |
<h4>Station 2</h4> | |
<span>Available</span> | |
</div> | |
<div class="station-type">DC Fast Charger | 350kW</div> | |
<div class="station-details"> | |
<p>Power Output: 350kW</p> | |
<p>Connector: CCS</p> | |
</div> | |
<div class="station-actions"> | |
<button>Reserve</button> | |
</div> | |
</div> | |
<div class="station-card in-use"> | |
<div class="station-header"> | |
<h4>Station 3</h4> | |
<span>In Use</span> | |
</div> | |
<div class="station-type">DC Fast Charger | 350kW</div> | |
<div class="station-details"> | |
<p>Current User: Tesla Model Y</p> | |
<p>Est. Completion: 15 min</p> | |
<div class="energy-meter"> | |
<div class="energy-meter-fill" style="width: 75%;"></div> | |
</div> | |
</div> | |
<div class="station-actions"> | |
<button disabled>In Use</button> | |
</div> | |
</div> | |
<div class="station-card available"> | |
<div class="station-header"> | |
<h4>Station 4</h4> | |
<span>Available</span> | |
</div> | |
<div class="station-type">DC Fast Charger | 350kW</div> | |
<div class="station-details"> | |
<p>Power Output: 350kW</p> | |
<p>Connector: CCS</p> | |
</div> | |
<div class="station-actions"> | |
<button>Reserve</button> | |
</div> | |
</div> | |
<div class="station-card available"> | |
<div class="station-header"> | |
<h4>Station 5</h4> | |
<span>Available</span> | |
</div> | |
<div class="station-type">Level 2 | 19.2kW</div> | |
<div class="station-details"> | |
<p>Power Output: 19.2kW</p> | |
<p>Connector: J1772</p> | |
</div> | |
<div class="station-actions"> | |
<button>Reserve</button> | |
</div> | |
</div> | |
<div class="station-card available"> | |
<div class="station-header"> | |
<h4>Station 6</h4> | |
<span>Available</span> | |
</div> | |
<div class="station-type">Level 2 | 19.2kW</div> | |
<div class="station-details"> | |
<p>Power Output: 19.2kW</p> | |
<p>Connector: J1772</p> | |
</div> | |
<div class="station-actions"> | |
<button>Reserve</button> | |
</div> | |
</div> | |
<div class="station-card in-use"> | |
<div class="station-header"> | |
<h4>Station 7</h4> | |
<span>In Use</span> | |
</div> | |
<div class="station-type">Level 2 | 19.2kW</div> | |
<div class="station-details"> | |
<p>Current User: Rivian R1T</p> | |
<p>Est. Completion: 45 min</p> | |
<div class="energy-meter"> | |
<div class="energy-meter-fill" style="width: 40%;"></div> | |
</div> | |
</div> | |
<div class="station-actions"> | |
<button disabled>In Use</button> | |
</div> | |
</div> | |
<div class="station-card unavailable"> | |
<div class="station-header"> | |
<h4>Station 8</h4> | |
<span>Maintenance</span> | |
</div> | |
<div class="station-type">Level 2 | 19.2kW</div> | |
<div class="station-details"> | |
<p>Status: Under Maintenance</p> | |
<p>Est. Return: 2 hours</p> | |
</div> | |
<div class="station-actions"> | |
<button disabled>Unavailable</button> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="hub-section"> | |
<h3>Hub Amenities</h3> | |
<div class="hub-amenities"> | |
<div class="amenity-card"> | |
<div class="amenity-icon"> | |
<i class="fas fa-coffee"></i> | |
</div> | |
<div class="amenity-name">Café Lounge</div> | |
<div class="amenity-description">Enjoy premium coffee and snacks while you wait</div> | |
</div> | |
<div class="amenity-card"> | |
<div class="amenity-icon"> | |
<i class="fas fa-wifi"></i> | |
</div> | |
<div class="amenity-name">High-Speed WiFi</div> | |
<div class="amenity-description">Free gigabit internet access for all users</div> | |
</div> | |
<div class="amenity-card"> | |
<div class="amenity-icon"> | |
<i class="fas fa-laptop"></i> | |
</div> | |
<div class="amenity-name">Work Pods</div> | |
<div class="amenity-description">Private workspaces with power and connectivity</div> | |
</div> | |
<div class="amenity-card"> | |
<div class="amenity-icon"> | |
<i class="fas fa-shopping-bag"></i> | |
</div> | |
<div class="amenity-name">Mini Market</div> | |
<div class="amenity-description">Convenience store with essentials and local products</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="hub-footer"> | |
<div class="hub-footer-links"> | |
<a href="#">Hub Map</a> | |
<a href="#">Report Issue</a> | |
<a href="#">Contact Staff</a> | |
</div> | |
<div class="hub-footer-info"> | |
Current Energy Source: 85% Solar | 15% Grid | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="component-features"> | |
<h2>Key Features</h2> | |
<ul class="features-list"> | |
<li>Real-time charging station status and availability monitoring</li> | |
<li>Reservation system for securing charging spots in advance</li> | |
<li>Energy usage tracking with visual indicators of charging progress</li> | |
<li>Integrated payment processing with subscription recognition</li> | |
<li>Interactive map of hub layout and amenities</li> | |
<li>Live energy source tracking showing renewable vs. grid power</li> | |
<li>Digital access to premium lounge services and work spaces</li> | |
</ul> | |
</div> | |
<a href="../index.html#mvp-showcase" class="back-to-home"> | |
<i class="fas fa-arrow-left"></i> Back to MVP Showcase | |
</a> | |
</main> | |
<footer> | |
<div class="container"> | |
<div class="footer-content"> | |
<div class="footer-logo"> | |
<div class="logo">UNITY FLEET</div> | |
<p>Revolutionizing electric vehicle infrastructure across Illinois</p> | |
</div> | |
<div class="footer-links"> | |
<div class="link-column"> | |
<h4>Navigation</h4> | |
<a href="../index.html#what-is-the-link">What is The Link</a> | |
<a href="../index.html#subscription-tiers">Subscription Tiers</a> | |
<a href="../index.html#impact-equity">Impact & Equity</a> | |
<a href="../index.html#tokenization">ChainLink Tokenization</a> | |
<a href="../index.html#rural-plan">Rural Revitalization</a> | |
<a href="../index.html#mvp-showcase">MVP Showcase</a> | |
</div> | |
<div class="link-column"> | |
<h4>Contact</h4> | |
<a href="mailto:info@unityfleet.com">info@unityfleet.com</a> | |
<a href="tel:+12175551234">+1 (217) 555-1234</a> | |
<p>2457 E Eldorado St<br>Decatur, IL 62521</p> | |
</div> | |
<div class="link-column"> | |
<h4>Legal</h4> | |
<a href="#">Privacy Policy</a> | |
<a href="#">Terms of Service</a> | |
<a href="#">Accessibility</a> | |
</div> | |
</div> | |
<div class="footer-social"> | |
<a href="#" class="social-icon"><i class="fab fa-twitter"></i></a> | |
<a href="#" class="social-icon"><i class="fab fa-linkedin"></i></a> | |
<a href="#" class="social-icon"><i class="fab fa-facebook"></i></a> | |
<a href="#" class="social-icon"><i class="fab fa-instagram"></i></a> | |
</div> | |
</div> | |
<div class="footer-bottom"> | |
<p>© 2025 Unity Fleet LLC. All rights reserved.</p> | |
</div> | |
</div> | |
</footer> | |
<script> | |
// Mobile navigation toggle | |
document.querySelector('.mobile-nav-toggle').addEventListener('click', function() { | |
document.querySelector('.nav-links').classList.toggle('active'); | |
this.innerHTML = document.querySelector('.nav-links').classList.contains('active') | |
? '<i class="fas fa-times"></i>' | |
: '<i class="fas fa-bars"></i>'; | |
}); | |
// Charging station animation | |
document.addEventListener('DOMContentLoaded', function() { | |
// Animate energy meters | |
const energyMeters = document.querySelectorAll('.energy-meter-fill'); | |
energyMeters.forEach(meter => { | |
const currentWidth = meter.style.width; | |
meter.style.width = '0%'; | |
setTimeout(() => { | |
meter.style.width = currentWidth; | |
}, 500); | |
}); | |
// Add hover effects to station cards | |
const stationCards = document.querySelectorAll('.station-card'); | |
stationCards.forEach(card => { | |
card.addEventListener('mouseenter', function() { | |
if (!this.classList.contains('unavailable')) { | |
this.style.transform = 'translateY(-10px)'; | |
this.style.boxShadow = '0 15px 30px rgba(0, 224, 255, 0.2)'; | |
} | |
}); | |
card.addEventListener('mouseleave', function() { | |
this.style.transform = ''; | |
this.style.boxShadow = ''; | |
}); | |
}); | |
}); | |
</script> | |
</body> | |
</html> | |