deepvision_builderOS / mobile-app.html
lattmamb's picture
Upload 17 files
d1b7c84 verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unity Fleet - Mobile Application</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);
}
/* Responsive iframe container */
.iframe-container {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%; /* 16:9 aspect ratio */
overflow: hidden;
border-radius: 8px;
}
.iframe-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
/* Mobile App specific styles */
.mobile-app-container {
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem;
}
.mobile-app-frame {
width: 375px;
height: 667px;
background-color: #000;
border-radius: 30px;
overflow: hidden;
position: relative;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
border: 10px solid #222;
margin-bottom: 2rem;
}
.mobile-app-content {
width: 100%;
height: 100%;
overflow: hidden;
}
.mobile-app-content div {
width: 100%;
height: 100%;
background-color: #0B0B0F;
color: white;
display: flex;
flex-direction: column;
}
.app-header {
padding: 1rem;
background: linear-gradient(90deg, rgba(0, 224, 255, 0.2), rgba(53, 242, 219, 0.2));
display: flex;
justify-content: space-between;
align-items: center;
}
.app-header h2 {
margin: 0;
font-size: 1.2rem;
}
.app-body {
flex: 1;
padding: 1rem;
overflow-y: auto;
}
.app-nav {
display: flex;
justify-content: space-around;
padding: 0.8rem 0;
background-color: rgba(0, 0, 0, 0.8);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-item {
display: flex;
flex-direction: column;
align-items: center;
font-size: 0.7rem;
}
.nav-item i {
font-size: 1.2rem;
margin-bottom: 0.3rem;
color: var(--accent-color-1);
}
/* App content styles */
.vehicle-card {
background: rgba(255, 255, 255, 0.05);
border-radius: 12px;
padding: 1rem;
margin-bottom: 1rem;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.vehicle-card h3 {
margin-top: 0;
margin-bottom: 0.5rem;
font-size: 1.1rem;
}
.vehicle-card p {
margin: 0.3rem 0;
font-size: 0.9rem;
opacity: 0.8;
}
.vehicle-card .card-footer {
display: flex;
justify-content: space-between;
margin-top: 1rem;
}
.vehicle-card .btn {
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;
}
.vehicle-card .price {
font-weight: bold;
color: var(--accent-color-1);
}
.search-bar {
display: flex;
margin-bottom: 1rem;
}
.search-bar input {
flex: 1;
padding: 0.8rem;
border-radius: 8px 0 0 8px;
border: 1px solid rgba(255, 255, 255, 0.1);
background: rgba(255, 255, 255, 0.05);
color: white;
}
.search-bar button {
padding: 0.8rem;
border-radius: 0 8px 8px 0;
border: none;
background: var(--accent-color-1);
color: #000;
}
.filter-options {
display: flex;
overflow-x: auto;
margin-bottom: 1rem;
padding-bottom: 0.5rem;
}
.filter-option {
padding: 0.5rem 1rem;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
margin-right: 0.5rem;
white-space: nowrap;
font-size: 0.8rem;
}
.filter-option.active {
background: rgba(0, 224, 255, 0.2);
border-color: var(--accent-color-1);
color: var(--accent-color-1);
}
</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>MOBILE APPLICATION</h1>
<p>Experience our intuitive mobile interface for reserving vehicles, managing your subscription, and finding charging stations across Illinois.</p>
</div>
<div class="component-content">
<div class="mobile-app-container">
<div class="mobile-app-frame">
<div class="mobile-app-content">
<div>
<div class="app-header">
<h2>Unity Fleet</h2>
<i class="fas fa-user-circle"></i>
</div>
<div class="app-body">
<div class="search-bar">
<input type="text" placeholder="Search vehicles...">
<button><i class="fas fa-search"></i></button>
</div>
<div class="filter-options">
<div class="filter-option active">All Vehicles</div>
<div class="filter-option">Sedans</div>
<div class="filter-option">SUVs</div>
<div class="filter-option">Luxury</div>
<div class="filter-option">Near Me</div>
</div>
<div class="vehicle-card">
<h3>Tesla Model 3</h3>
<p>Electric Sedan • 358 mi range</p>
<p>Available at: Downtown Springfield Hub</p>
<div class="card-footer">
<span class="price">$75/day</span>
<button class="btn">Reserve</button>
</div>
</div>
<div class="vehicle-card">
<h3>Rivian R1S</h3>
<p>Electric SUV • 316 mi range</p>
<p>Available at: Champaign-Urbana Hub</p>
<div class="card-footer">
<span class="price">$95/day</span>
<button class="btn">Reserve</button>
</div>
</div>
<div class="vehicle-card">
<h3>Lucid Air</h3>
<p>Electric Luxury • 520 mi range</p>
<p>Available at: Bloomington-Normal Hub</p>
<div class="card-footer">
<span class="price">$120/day</span>
<button class="btn">Reserve</button>
</div>
</div>
</div>
<div class="app-nav">
<div class="nav-item">
<i class="fas fa-home"></i>
<span>Home</span>
</div>
<div class="nav-item">
<i class="fas fa-car"></i>
<span>Vehicles</span>
</div>
<div class="nav-item">
<i class="fas fa-map-marker-alt"></i>
<span>Map</span>
</div>
<div class="nav-item">
<i class="fas fa-calendar-alt"></i>
<span>Bookings</span>
</div>
<div class="nav-item">
<i class="fas fa-cog"></i>
<span>Settings</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="component-features">
<h2>Key Features</h2>
<ul class="features-list">
<li>Intuitive vehicle browsing and filtering by type, range, and location</li>
<li>Seamless reservation system with calendar integration</li>
<li>Real-time vehicle availability and charging status</li>
<li>Subscription management and billing dashboard</li>
<li>Interactive map showing charging stations and vehicle locations</li>
<li>Trip planning with charging stops automatically calculated</li>
<li>Push notifications for reservation reminders and charging updates</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>&copy; 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>';
});
// Component loading logic
document.addEventListener('DOMContentLoaded', function() {
console.log('Mobile App component loaded');
});
</script>
</body>
</html>