first commit
Šī revīzija ir iekļauta:
@@ -0,0 +1,236 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Smart City Solutions</title>
|
||||
<!-- Favicons -->
|
||||
<link href="assets/img/favicon.png" rel="icon">
|
||||
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
|
||||
|
||||
<!-- Fonts -->
|
||||
<link href="https://fonts.googleapis.com" rel="preconnect">
|
||||
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
|
||||
|
||||
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
||||
|
||||
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
|
||||
|
||||
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
||||
<link href="assets/css/main.css" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
background-color: #f5f7fa;
|
||||
color: #333333;
|
||||
font-family: 'Arial', sans-serif;
|
||||
line-height: 1.6;
|
||||
}
|
||||
|
||||
.hero-section {
|
||||
background: linear-gradient(to bottom right, #0056b3, #007bff), url('city-bg.jpg') no-repeat center center;
|
||||
background-size: cover;
|
||||
color: white;
|
||||
text-align: center;
|
||||
padding: 80px 20px;
|
||||
border-bottom: 4px solid #0056b3;
|
||||
border-radius: 0 0 25px 25px;
|
||||
}
|
||||
|
||||
.hero-section h1 {
|
||||
font-size: 2.8rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hero-section p {
|
||||
font-size: 1.2rem;
|
||||
margin-top: 15px;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
margin-bottom: 20px;
|
||||
text-align: center;
|
||||
color: #0056b3;
|
||||
}
|
||||
|
||||
.divider {
|
||||
width: 100px;
|
||||
height: 4px;
|
||||
background-color: #0056b3;
|
||||
margin: 10px auto 30px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.highlight-box {
|
||||
background-color: white;
|
||||
padding: 20px;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.highlight-box:hover {
|
||||
transform: translateY(-5px);
|
||||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
.highlight-box h4 {
|
||||
color: #0056b3;
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.highlight-box p {
|
||||
color: #666666;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.icon-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.icon-list li {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
.icon-list li::before {
|
||||
content: '➔';
|
||||
color: #0056b3;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.image-box img {
|
||||
max-width: 100%;
|
||||
border-radius: 15px;
|
||||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.cta-section {
|
||||
text-align: center;
|
||||
padding: 50px 20px;
|
||||
background: linear-gradient(to bottom right, #007bff, #0056b3);
|
||||
color: white;
|
||||
border-radius: 25px;
|
||||
}
|
||||
|
||||
.cta-section h2 {
|
||||
font-size: 2rem;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.cta-section p {
|
||||
font-size: 1.1rem;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: #ffffff;
|
||||
color: #0056b3;
|
||||
border: 2px solid white;
|
||||
padding: 12px 30px;
|
||||
font-size: 1.1rem;
|
||||
border-radius: 50px;
|
||||
transition: all 0.3s ease;
|
||||
}
|
||||
|
||||
.btn-primary:hover {
|
||||
background-color: #0056b3;
|
||||
color: white;
|
||||
border-color: #ffffff;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header id="header" class="header d-flex align-items-center fixed-top">
|
||||
</header>
|
||||
<!-- Hero Section -->
|
||||
<div class="hero-section">
|
||||
<h1>Smart City Solutions</h1>
|
||||
<p>Shaping the future of urban innovation with sustainable, intelligent, and interconnected solutions for a better tomorrow.</p>
|
||||
</div>
|
||||
|
||||
<!-- Introduction Section -->
|
||||
<div class="container py-5">
|
||||
<h2 class="section-title">What is a Smart City?</h2>
|
||||
<div class="divider"></div>
|
||||
<p class="text-center">A Smart City is an urban area that leverages IoT, AI, and data analytics to optimize infrastructure and deliver efficient, responsive, and sustainable services to citizens.</p>
|
||||
<ul class="icon-list">
|
||||
<li>Data-Driven Decision Making: Real-time insights for proactive governance.</li>
|
||||
<li>Sustainability: Efficient energy management and eco-friendly practices.</li>
|
||||
<li>Mobility: Intelligent transportation systems for reduced congestion.</li>
|
||||
<li>Safety: Real-time surveillance and emergency response systems.</li>
|
||||
<li>Citizen Engagement: Platforms for seamless interaction with authorities.</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<!-- Features Section -->
|
||||
<div class="container py-5">
|
||||
<h2 class="section-title">Comprehensive Smart City Solutions</h2>
|
||||
<div class="divider"></div>
|
||||
<div class="row g-4">
|
||||
<div class="col-md-4">
|
||||
<div class="highlight-box">
|
||||
<h4>IoT Infrastructure</h4>
|
||||
<p>The backbone of every Smart City, enabling real-time device communication and interconnected systems.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="highlight-box">
|
||||
<h4>Smart Sensors</h4>
|
||||
<p>Monitors air quality, waste management, water supply, and energy usage with high precision.</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="highlight-box">
|
||||
<h4>Smart Street Lighting</h4>
|
||||
<p>Automated lighting systems improve energy efficiency and adapt to pedestrian and vehicular movement.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Image Section -->
|
||||
<div class="container py-5">
|
||||
<div class="row align-items-center">
|
||||
<div class="col-md-6 text-center">
|
||||
<div class="image-box">
|
||||
<img src="smart-city-visual.png" alt="Smart City Visualization">
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<h2 class="section-title">Smart Governance</h2>
|
||||
<div class="divider"></div>
|
||||
<p>Advanced systems for managing energy distribution, streamlining services, and minimizing downtime.</p>
|
||||
<ul class="icon-list">
|
||||
<li>Smart Grids for efficient power supply and minimal outages.</li>
|
||||
<li>E-Governance Platforms for faster access to municipal services.</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Call to Action Section -->
|
||||
<div class="cta-section">
|
||||
<h2>Transform Your City Today</h2>
|
||||
<p>Join the revolution in urban living with ADM's Smart City Solutions. Let's build a sustainable future together.</p>
|
||||
<button class="btn btn-primary">Get in Touch</button>
|
||||
</div>
|
||||
<footer id="footer" class="footer">
|
||||
</footer>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
|
||||
<!-- header and footer js files -->
|
||||
<script src="assets/js/navbar.js"></script>
|
||||
<script src="assets/js/footer.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Atsaukties uz šo jaunā problēmā
Block a user