-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (94 loc) · 4.16 KB
/
Copy pathindex.html
File metadata and controls
101 lines (94 loc) · 4.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
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
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Filmové Web Komponenty — Knihovna Promptů</title>
<meta name="description" content="30 filmových webových komponent s českými prompty ke zkopírování. Žádný framework, žádný build step.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- HERO -->
<header class="hero" id="hero">
<div class="hero__bg"></div>
<div class="hero__content">
<div class="hero__badge">🎬 30 modulů · 0 frameworků · 100% kopírovatelné</div>
<h1 class="hero__title">Filmové Web<br><span class="hero__accent">Komponenty</span></h1>
<p class="hero__sub">Každá komponenta má český prompt připravený ke zkopírování.<br>Vlož ho do ChatGPT, Claude nebo jiného AI a okamžitě dostaneš hotový kód.</p>
<div class="hero__stats">
<div class="stat"><span class="stat__num" data-target="30">0</span><span class="stat__label">Komponent</span></div>
<div class="stat"><span class="stat__num" data-target="4">0</span><span class="stat__label">Kategorie</span></div>
<div class="stat"><span class="stat__num" data-target="0">0</span><span class="stat__label">Závislostí</span></div>
</div>
</div>
<div class="hero__scroll">
<span>Scrolluj dolů</span>
<div class="hero__arrow"></div>
</div>
</header>
<!-- FILTERS -->
<nav class="filters" id="filters">
<div class="filters__inner">
<button class="filter-btn active" data-filter="all">
<span class="filter-icon">🎯</span> Vše <span class="filter-count">30</span>
</button>
<button class="filter-btn" data-filter="scroll">
<span class="filter-icon">📜</span> Scroll <span class="filter-count">9</span>
</button>
<button class="filter-btn" data-filter="cursor">
<span class="filter-icon">🖱️</span> Kurzor & Hover <span class="filter-count">8</span>
</button>
<button class="filter-btn" data-filter="click">
<span class="filter-icon">👆</span> Klik & Tap <span class="filter-count">6</span>
</button>
<button class="filter-btn" data-filter="ambient">
<span class="filter-icon">✨</span> Ambientní <span class="filter-count">7</span>
</button>
</div>
</nav>
<!-- GRID -->
<main class="grid-wrap" id="grid">
<div class="grid" id="cards-container">
<!-- Cards injected by JS -->
</div>
</main>
<!-- TOAST -->
<div class="toast" id="toast">
<span class="toast__icon">✅</span>
<span class="toast__text">Prompt zkopírován do schránky!</span>
</div>
<!-- MODAL -->
<div class="modal-overlay" id="modal-overlay">
<div class="modal" id="modal">
<button class="modal__close" id="modal-close" aria-label="Zavřít">×</button>
<div class="modal__header">
<span class="modal__cat" id="modal-cat"></span>
<h2 class="modal__title" id="modal-title"></h2>
<p class="modal__desc" id="modal-desc"></p>
</div>
<div class="modal__prompt-wrap">
<div class="modal__prompt-header">
<span>📋 Český prompt ke zkopírování</span>
<button class="modal__copy-btn" id="modal-copy">
<span class="copy-icon">📋</span> Kopírovat prompt
</button>
</div>
<pre class="modal__prompt" id="modal-prompt"></pre>
</div>
<div class="modal__footer">
<a class="modal__github" id="modal-github" href="#" target="_blank" rel="noopener">
Zobrazit na GitHubu →
</a>
</div>
</div>
</div>
<!-- FOOTER -->
<footer class="footer">
<p>Postaveno na základě <a href="https://github.com/robonuggets/cinematic-site-components" target="_blank" rel="noopener">cinematic-site-components</a> od RoboNuggets · MIT Licence</p>
</footer>
<script src="data.js"></script>
<script src="app.js"></script>
</body>
</html>