-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (152 loc) · 5.97 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>pnimrp - Poor Man's Radio Player in Nim</title>
<link rel="stylesheet" href="web/styles.css?t=1706568000">
<script src="web/script.js?t=1706568000"></script>
<link rel="icon" href="web/ico.png" type="image/png">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap" rel="stylesheet">
<meta name="description" content="A lightweight, terminal-based internet radio player built with Nim.">
<meta name="keywords" content="pnimrp, radio player, Nim, terminal, internet radio">
<meta name="author" content="bloomingchad">
<noscript>
<style>
.feature-card, .instructions pre {
opacity: 1;
transform: translateY(2px);
}
</style>
</noscript>
</head>
<body>
<!-- Header Section -->
<header class="header">
<div class="container">
<nav class="navbar" aria-label="Main navigation">
<div class="logo">pnimrp</div>
<div class="nav-links">
<a href="#features">Features</a>
<a href="#installation">Installation</a>
<a href="#demo">Demo</a>
<a href="https://github.com/bloomingchad/pnimrp" class="cta-button" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
</nav>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="container">
<div class="hero-content">
<h1>🎧 Listen to Internet Radio, Straight from Your Terminal 🎶</h1>
<p>A lightweight, terminal-based internet radio player built with Nim. 🚀</p>
<div class="icon">
<img src="web/ico.ico" alt="pnimrp Icon" loading="lazy"> <!-- Updated path -->
</div>
<div class="download-buttons">
<a href="#installation" class="btn">📥 Install for Unix</a>
<a href="#installation" class="btn">📥 Install for Windows</a>
</div>
</div>
</div>
</section>
<!-- Features Section -->
<section class="features" id="features">
<div class="container">
<h2>✨ Features</h2>
<div class="feature-grid">
<div class="feature-card">
<h3>📦 Portable</h3>
<p>Works seamlessly on Unix and Windows.</p>
</div>
<div class="feature-card">
<h3>🎮 Easy to Use</h3>
<p>Menu-driven interface for effortless navigation.</p>
</div>
<div class="feature-card">
<h3>📝 Modifiable Stations</h3>
<p>Edit JSON files to add or remove radio stations.</p>
</div>
<div class="feature-card">
<h3>⚡ Lightweight</h3>
<p>Minimal dependencies for fast performance.</p>
</div>
</div>
</div>
</section>
<!-- Installation Section -->
<section class="installation" id="installation">
<div class="container">
<h2>🔧 Installation</h2>
<div class="instructions">
<h3>🐧 Unix</h3>
<pre><code>nimble install pnimrp</code></pre>
<h3>🪟 Windows</h3>
<pre><code>nimble install pnimrp</code></pre>
</div>
</div>
</section>
<!-- Demo Section -->
<section class="demo" id="demo">
<div class="container">
<h2>🎥 Demo</h2>
<div class="video-container">
<img src="web/demo.gif" alt="pnimrp in action" loading="lazy" class="rounded-gif"> <!-- Updated path -->
</div>
</div>
</section>
<!-- Documentation Section -->
<section class="documentation">
<div class="container">
<h2>📚 Documentation</h2>
<div class="doc-buttons">
<a href="https://github.com/bloomingchad/pnimrp/tree/main/doc" class="btn" target="_blank" rel="noopener noreferrer">📖 User Guide</a>
</div>
</div>
</section>
<!-- Contributing Section -->
<section class="contributing">
<div class="container">
<h2>🤝 Contributing</h2>
<p>We welcome contributions! Report bugs, suggest features, or submit pull requests.</p>
<a href="https://github.com/bloomingchad/pnimrp" class="btn" target="_blank" rel="noopener noreferrer">💡 Contribute</a>
</div>
</section>
<!-- Credits Section -->
<section class="credits">
<div class="container">
<h2>🌟 Credits</h2>
<ul>
<li><strong>pmrp</strong>: Inspiration and initial codebase 💡.</li>
<li><strong>libmpv</strong>: Playback functionality. 📻</li>
<li><strong>c2nim</strong>: Wrapping objects.</li>
<li><strong>illwill</strong>: Async input handling.</li>
<li><strong>ChatGPT 3.5</strong>: Documentation and code improvements.</li>
<li><strong>Claude 3.5 Sonnet</strong>: Documentation and brainstorming.</li>
<li><strong>DeepSeek-V3</strong>: Documentation and README improvements 🥰</li>
<li><strong>You</strong>: For using and supporting this project! ❤️</li>
</ul>
</div>
</section>
<!-- License Section -->
<section class="license">
<div class="container">
<p>This project is licensed under the <a href="https://opensource.org/license/mpl-2-0" target="_blank" rel="noopener noreferrer">Mozilla Public License 2.0 (MPL-2.0)</a>.</p>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p>© 2021-2024 pnimrp. bloomingchad All rights reserved.</p>
<div class="social-links">
<a href="https://github.com/bloomingchad/pnimrp/tree/main/doc" target="_blank" rel="noopener noreferrer">Documentation</a>
<a href="https://github.com/bloomingchad" target="_blank" rel="noopener noreferrer">🐙 GitHub</a>
</div>
<p>⭐ Star the project on GitHub or share it with friends!</p>
<p>Made with ❤️ by the bloomingchad and deepseekv3</p>
<iframe src="https://ghbtns.com/github-btn.html?user=bloomingchad&repo=pnimrp&type=star&count=true&size=large" frameborder="0" scrolling="0" width="170" height="30" title="GitHub" loading="lazy"></iframe>
</div>
</footer>
</body>
</html>