-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.85 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.85 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Open Data Dashboards - Portfolio by Francesco Saviano</title>
<link rel="stylesheet" href="styles.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;600;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- Hero Section -->
<header class="hero">
<div class="hero-content">
<h1 class="hero-title">Open Data Dashboards</h1>
<p class="hero-subtitle">Explore complex data through interactive and modern visualizations</p>
</div>
<div class="hero-bg-animation"></div>
</header>
<!-- Dashboard Cards Grid -->
<main class="container">
<section class="dashboards-grid" id="dashboards">
<!-- Cards will be dynamically generated via JavaScript -->
</section>
</main>
<!-- Footer -->
<footer class="footer">
<div class="footer-content">
<p class="footer-text">Designed & Developed by <span class="highlight">Francesco Saviano</span></p>
<a href="https://www.upwork.com/freelancers/~01c0e17d02ad619940?mp_source=share" target="_blank" class="cta-button">
<span>Hire Me on Upwork</span>
<svg class="arrow-icon" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</svg>
</a>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>