forked from raflimaulanayh/obc-ppt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
300 lines (278 loc) · 17.5 KB
/
Copy pathindex.html
File metadata and controls
300 lines (278 loc) · 17.5 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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Presentation Library | OneCode</title>
<!-- Fonts -->
<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=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="assets/style.css">
<link rel="icon" type="image/png" href="favicon.png">
</head>
<body class="bg-[#F8FAFC] text-body font-sans antialiased min-h-screen flex flex-col relative z-0">
<!-- Ambient Glow Effects -->
<div class="fixed inset-0 z-[-2] pointer-events-none overflow-hidden opacity-70">
<div class="absolute -top-[10%] -right-[5%] w-[500px] h-[500px] rounded-full bg-accent-teal/15 blur-[100px] animate-pulse"
style="animation-duration: 8s;"></div>
<div class="absolute top-[20%] -left-[10%] w-[600px] h-[600px] rounded-full bg-accent-light/30 blur-[120px] animate-pulse"
style="animation-duration: 12s;"></div>
<div class="absolute -bottom-[10%] right-[10%] w-[400px] h-[400px] rounded-full bg-primary/5 blur-[100px] animate-pulse"
style="animation-duration: 10s;"></div>
</div>
<!-- Grid Background with Subtle Gradient Fade -->
<div class="fixed inset-0 z-[-1] bg-grid-pattern pointer-events-none">
<div class="absolute inset-0 bg-gradient-to-b from-white/60 via-transparent to-[#F8FAFC] pointer-events-none">
</div>
</div>
<!-- Top Navigation -->
<header class="bg-white border-b border-outline-primary sticky top-0 z-50">
<div class="max-w-7xl mx-auto px-6 py-4 flex items-center justify-between">
<div class="flex items-center gap-3">
<img src="assets/images/logo.png" alt="OneCode Logo" class="h-8 object-contain">
<div class="h-6 w-px bg-outline-primary mx-1"></div>
<span class="text-headline font-bold text-lg tracking-tight">Presentation Library</span>
</div>
<nav class="hidden md:flex items-center gap-6">
<a href="#" class="nav-link text-sm font-medium text-primary hover:text-accent-teal transition-colors"
data-filter="all">Home</a>
<a href="#" class="nav-link text-sm font-medium text-body hover:text-primary transition-colors"
data-filter="collection">Collections</a>
<a href="#" class="nav-link text-sm font-medium text-body hover:text-primary transition-colors"
data-filter="recent">Recent</a>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="flex-grow max-w-7xl mx-auto px-6 py-12 w-full relative">
<!-- Hero Section -->
<div
class="mb-12 border-b border-outline-primary pb-8 flex flex-col md:flex-row md:items-end justify-between gap-6 opacity-0 animate-fade-in">
<div>
<h1 class="text-3xl md:text-4xl font-bold text-headline mb-3 tracking-tight">Presentations</h1>
<p class="text-body text-lg max-w-2xl">Access and manage our collection of professional presentations,
pitch decks, and internal guidelines.</p>
</div>
<div class="flex items-center gap-3">
<div class="relative">
<svg class="w-5 h-5 absolute left-3 top-1/2 -translate-y-1/2 text-body/60" fill="none"
stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path>
</svg>
<input type="text" id="searchInput" placeholder="Search presentations..."
class="pl-10 pr-4 py-2 border border-outline-primary rounded-lg text-sm focus:outline-none focus:border-accent-teal focus:ring-1 focus:ring-accent-teal transition-shadow w-full md:w-64 bg-white">
</div>
</div>
</div>
<!-- Library Grid -->
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Open Claw Presentation Card -->
<a href="openclaw-ppt/index.html"
class="presentation-card opacity-0 animate-fade-in-up group flex flex-col bg-white border border-outline-primary rounded-xl overflow-hidden hover:shadow-lg hover:shadow-accent-teal/10 hover:-translate-y-1 transition-all duration-300"
style="animation-delay: 0.1s;" data-title="openclaw ai assistant project showcase" data-recent="true"
data-collection="true">
<div class="h-48 relative overflow-hidden flex items-center justify-center">
<!-- Banner Image -->
<img src="assets/images/openclaw-banner.png" alt="OpenClaw AI Assistant Banner"
class="absolute inset-0 w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
<div
class="absolute inset-0 bg-primary/20 group-hover:bg-transparent transition-colors duration-500">
</div>
<!-- Badge -->
<div
class="absolute top-4 right-4 bg-white/90 backdrop-blur-sm px-2.5 py-1 rounded-md text-[10px] font-bold text-primary uppercase tracking-wider shadow-sm group-hover:bg-white transition-colors z-10">
Pitch Deck
</div>
</div>
<div class="p-6 flex flex-col flex-grow">
<span class="text-xs font-semibold text-accent-teal uppercase tracking-wider mb-2">Project
Showcase</span>
<h2 class="text-xl font-bold text-headline mb-2 group-hover:text-secondary transition-colors">
OpenClaw AI Assistant</h2>
<p class="text-sm text-body line-clamp-2 leading-relaxed">A comprehensive presentation detailing the
Open Claw project, including objectives, target audience, and technical implementations.</p>
<div class="mt-6 flex items-center justify-between mt-auto pt-4 border-t border-outline-primary/50">
<div class="flex items-center gap-2">
<div
class="w-6 h-6 rounded-full bg-primary flex items-center justify-center text-[10px] text-white font-bold">
OC</div>
<span class="text-xs text-body font-medium">OneCode Team</span>
</div>
<div
class="flex items-center text-sm font-semibold text-secondary group-hover:text-primary transition-colors">
Open
<svg class="w-4 h-4 ml-1 group-hover:translate-x-1 transition-transform" fill="none"
stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7">
</path>
</svg>
</div>
</div>
</div>
</a>
<!-- Project Initiation Card -->
<a href="project-initiation/index.html"
class="presentation-card opacity-0 animate-fade-in-up group flex flex-col bg-white border border-outline-primary rounded-xl overflow-hidden hover:shadow-lg hover:shadow-accent-teal/10 hover:-translate-y-1 transition-all duration-300"
style="animation-delay: 0.15s;" data-title="project initiation kickoff team management"
data-recent="true" data-collection="true">
<div class="h-48 relative overflow-hidden flex items-center justify-center">
<!-- Banner Image -->
<img src="assets/images/project-kickoff-banner.png" alt="Project Kickoff Banner"
class="absolute inset-0 w-full h-full object-cover group-hover:scale-105 transition-transform duration-500">
<div
class="absolute inset-0 bg-primary/20 group-hover:bg-transparent transition-colors duration-500">
</div>
<!-- Badge -->
<div
class="absolute top-4 right-4 bg-white/90 backdrop-blur-sm px-2.5 py-1 rounded-md text-[10px] font-bold text-primary uppercase tracking-wider shadow-sm group-hover:bg-white transition-colors z-10">
Internal Meeting
</div>
</div>
<div class="p-6 flex flex-col flex-grow">
<span class="text-xs font-semibold text-accent-teal uppercase tracking-wider mb-2">Project
Kickoff</span>
<h2 class="text-xl font-bold text-headline mb-2 group-hover:text-secondary transition-colors">
Project Initiation & Kickoff</h2>
<p class="text-sm text-body line-clamp-2 leading-relaxed">Menyelaraskan visi, tim, dan teknologi
untuk project komunitas OneCode. Pemilihan project, pembagian tim, dan project management.</p>
<div class="mt-6 flex items-center justify-between mt-auto pt-4 border-t border-outline-primary/50">
<div class="flex items-center gap-2">
<div
class="w-6 h-6 rounded-full bg-primary flex items-center justify-center text-[10px] text-white font-bold">
OC</div>
<span class="text-xs text-body font-medium">OneCode Team</span>
</div>
<div
class="flex items-center text-sm font-semibold text-secondary group-hover:text-primary transition-colors">
Open
<svg class="w-4 h-4 ml-1 group-hover:translate-x-1 transition-transform" fill="none"
stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7">
</path>
</svg>
</div>
</div>
</div>
</a>
<!-- Placeholder Card 1 -->
<div class="presentation-card opacity-0 animate-fade-in-up group flex flex-col bg-white border border-outline-primary rounded-xl overflow-hidden opacity-60 hover:opacity-100 transition-opacity"
style="animation-delay: 0.2s;" data-title="company overview 2026 internal" data-recent="false"
data-collection="true">
<div
class="h-48 bg-gray-50 relative flex items-center justify-center p-6 border-b border-outline-primary">
<div class="text-body/50">
<svg class="w-12 h-12" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"
d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z">
</path>
</svg>
</div>
</div>
<div class="p-6 flex flex-col flex-grow">
<span class="text-xs font-semibold text-secondary/80 uppercase tracking-wider mb-2">Internal</span>
<h2 class="text-xl font-bold text-headline/80 mb-2">Company Overview 2026</h2>
<p class="text-sm text-body/80 line-clamp-2">Q1/Q2 company progress, milestones, and upcoming
strategic initiatives.</p>
</div>
</div>
<!-- Placeholder Card 2 -->
<div class="presentation-card opacity-0 animate-fade-in-up group flex flex-col bg-white border border-outline-primary rounded-xl overflow-hidden opacity-60 hover:opacity-100 transition-opacity"
style="animation-delay: 0.3s;" data-title="brand guidelines v2 marketing" data-recent="true"
data-collection="false">
<div
class="h-48 bg-gray-50 relative flex items-center justify-center p-6 border-b border-outline-primary">
<div class="text-body/50">
<svg class="w-12 h-12" fill="none" stroke="currentColor" viewBox="0 0 24 24"
xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"
d="M12 15v2m-6 4h12a2 2 0 002-2v-6a2 2 0 00-2-2H6a2 2 0 00-2 2v6a2 2 0 002 2zm10-10V7a4 4 0 00-8 0v4h8z">
</path>
</svg>
</div>
</div>
<div class="p-6 flex flex-col flex-grow">
<span class="text-xs font-semibold text-secondary/80 uppercase tracking-wider mb-2">Marketing</span>
<h2 class="text-xl font-bold text-headline/80 mb-2">Brand Guidelines V2</h2>
<p class="text-sm text-body/80 line-clamp-2">Updated rules for typography, color usage, and brand
identity across all platforms.</p>
</div>
</div>
</div>
<!-- Empty State -->
<div id="emptyState" class="hidden flex-col items-center justify-center py-16 text-center">
<div class="w-16 h-16 mb-4 text-body/60">
<svg fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"
d="M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z"></path>
</svg>
</div>
<h3 class="text-lg font-semibold text-headline mb-1">No presentations found</h3>
<p class="text-body">Try adjusting your search or filters.</p>
</div>
</main>
<!-- Footer -->
<footer class="bg-white border-t border-outline-primary mt-auto py-8">
<div class="max-w-7xl mx-auto px-6 flex flex-col md:flex-row items-center justify-between gap-4">
<p class="text-sm text-body">© 2026 OneCode. All rights reserved.</p>
<div class="flex gap-4">
<a href="#" class="text-sm text-body hover:text-primary transition-colors">Help</a>
<a href="#" class="text-sm text-body hover:text-primary transition-colors">Privacy</a>
<a href="#" class="text-sm text-body hover:text-primary transition-colors">Terms</a>
</div>
</div>
</footer>
<script>
document.addEventListener('DOMContentLoaded', () => {
const searchInput = document.getElementById('searchInput');
const cards = document.querySelectorAll('.presentation-card');
const navLinks = document.querySelectorAll('.nav-link');
const emptyState = document.getElementById('emptyState');
let currentFilter = 'all';
function filterCards() {
const searchTerm = searchInput.value.toLowerCase();
let visibleCount = 0;
cards.forEach(card => {
const title = card.dataset.title.toLowerCase();
const isRecent = card.dataset.recent === 'true';
const isCollection = card.dataset.collection === 'true';
const matchesSearch = title.includes(searchTerm);
let matchesFilter = true;
if (currentFilter === 'recent') matchesFilter = isRecent;
if (currentFilter === 'collection') matchesFilter = isCollection;
if (matchesSearch && matchesFilter) {
card.style.display = 'flex';
visibleCount++;
} else {
card.style.display = 'none';
}
});
if (visibleCount === 0) {
emptyState.classList.remove('hidden');
emptyState.classList.add('flex');
} else {
emptyState.classList.add('hidden');
emptyState.classList.remove('flex');
}
}
searchInput.addEventListener('input', filterCards);
navLinks.forEach(link => {
link.addEventListener('click', (e) => {
e.preventDefault();
navLinks.forEach(l => {
l.classList.remove('text-primary');
l.classList.add('text-body');
});
link.classList.remove('text-body');
link.classList.add('text-primary');
currentFilter = link.dataset.filter;
filterCards();
});
});
});
</script>
</body>
</html>