-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlighthouse-summary.html
More file actions
27 lines (27 loc) · 1.16 KB
/
lighthouse-summary.html
File metadata and controls
27 lines (27 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Lighthouse Audit Summary</title>
<style>
body { font-family: Arial, sans-serif; margin: 2rem; background: #f5f5f5; }
.container { max-width: 1200px; margin: 0 auto; background: white; padding: 2rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
h1 { color: #333; border-bottom: 3px solid #667eea; padding-bottom: 1rem; }
.info { background: #e3f2fd; padding: 1rem; border-left: 4px solid #2196f3; margin: 1rem 0; }
a { color: #667eea; text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
</head>
<body>
<div class="container">
<h1>📊 Lighthouse Audit Summary</h1>
<div class="info">
<p><strong>Generated:</strong> $(date)</p>
<p><strong>Version:</strong> v1.0.2</p>
</div>
<p>Lighthouse audit reports are available in this directory.</p>
<p>View detailed reports at <a href="https://github.com/Hack23/homepage/releases">GitHub Releases</a>.</p>
</div>
</body>
</html>