-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 1.91 KB
/
index.html
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
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LastRedux</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.0.0/modern-normalize.min.css"
integrity="sha512-ISS7cAi1PEhQ8jnbJpJZMd29NlhNj4AWYyLOSp2CE/CsHxTCu+r+t0D2yoJudVrd0/8fTVPUVDzY5Tvli75u/g=="
crossorigin="anonymous" />
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@500;700&family=Poppins:wght@700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<main>
<div class="logo">
<img src="assets/lastredux-logo.png" alt="LastRedux logo" width="64" height="64" />
<h2>LastRedux</h2>
</div>
<h1>A beautiful Last.fm scrobbler for macOS.</h1>
<p>Track your Spotify, Apple Music, and iTunes listening statistics with Last.fm</p>
<div class="buttons">
<a class="button cta" href="https://github.com/LastRedux/LastRedux/releases/download/beta-2/LastRedux.Beta.2.zip">
<img src=" assets/download-icon.png" alt="Download">
<span>Download Beta</span>
</a>
<a class="button" href="https://github.com/LastRedux/LastRedux" target="_blank">
<img src="assets/github-logo.png" alt="Open on GitHub">
<span>View on GitHub</span>
</a>
</div>
<video autoplay="autoplay" loop="true" muted="true" id="appDemo">
<source src="assets/app.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<footer>
<p>Created by Kent Williams <a href="https://github.com/hum4n01d" target="_blank">@Hum4n01d</a> + Jake Delgado <a
href="https://github.com/jakedel" target="_blank">@jakedel</a></p>
</footer>
</main>
</body>
</html>