File size: 15,264 Bytes
073b760
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12bdd2a
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
301
302
303
304
305
306
307
308
309
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Interview Insights: Neo-Brutalist Presentation</title>
    <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
    <script src="https://cdn.tailwindcss.com"></script>
    <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
    <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/animejs@3.2.1/lib/anime.min.js"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;700&family=Syne:wght@400;700;800&display=swap');
        body {
            font-family: 'Space Grotesk', sans-serif;
            background-color: #000;
            color: #fff;
            overflow-x: hidden;
        }
        .slide {
            min-height: 100vh;
            padding: 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-bottom: 4px solid #fff;
        }
        .neo-box {
            border: 4px solid #fff;
            background-color: #000;
            box-shadow: 8px 8px 0 #fff;
        }
        .title-font {
            font-family: 'Syne', sans-serif;
        }
        .bounce {
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .swirl-in {
            animation: swirlIn 1s ease-out forwards;
        }
        @keyframes swirlIn {
            0% { opacity: 0; transform: rotate(-540deg) scale(0); }
            100% { opacity: 1; transform: rotate(0) scale(1); }
        }
        .slide-btn {
            transition: all 0.3s ease;
        }
        .slide-btn:hover {
            transform: scale(1.05) rotate(2deg);
            box-shadow: 12px 12px 0 #fff;
        }
    </style>
</head>
<body class="bg-black text-white">
    <!-- Navigation -->
    <nav class="fixed top-0 left-0 right-0 z-50 bg-black py-4 px-6 border-b-4 border-white flex justify-between items-center">
        <div class="text-2xl font-bold title-font">INTERVIEW INSIGHTS</div>
        <div class="flex space-x-2">
            <button onclick="showSlide(1)" class="neo-box px-3 py-1 slide-btn">1</button>
            <button onclick="showSlide(2)" class="neo-box px-3 py-1 slide-btn">2</button>
            <button onclick="showSlide(3)" class="neo-box px-3 py-1 slide-btn">3</button>
            <button onclick="showSlide(4)" class="neo-box px-3 py-1 slide-btn">4</button>
            <button onclick="showSlide(5)" class="neo-box px-3 py-1 slide-btn">5</button>
            <button onclick="showSlide(6)" class="neo-box px-3 py-1 slide-btn">6</button>
        </div>
    </nav>

    <!-- Slide 1: Title Slide -->
    <section id="slide1" class="slide relative">
        <div class="absolute top-10 right-10 bounce">
            <i data-feather="star" class="text-yellow-300" width="40" height="40"></i>
        </div>
        <div class="mx-auto text-center max-w-4xl">
            <h1 class="text-6xl md:text-8xl font-bold title-font mb-6 swirl-in" data-aos="fade-up">KEY INSIGHTS</h1>
            <div class="neo-box p-8 mt-10" data-aos="fade-up" data-aos-delay="300">
                <p class="text-xl md:text-2xl">From the Interview Article</p>
                <p class="text-sm mt-4 opacity-75">Highlighting key interview insights on technology, creativity, and innovation strategies</p>
            </div>
        </div>
        <div class="absolute bottom-10 left-10">
            <button onclick="showSlide(2)" class="neo-box px-6 py-3 slide-btn flex items-center">
                Next <i data-feather="arrow-right" class="ml-2"></i>
            </button>
        </div>
    </section>

    <!-- Slide 2: Main Theme -->
    <section id="slide2" class="slide hidden">
        <div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-center max-w-6xl mx-auto">
            <div class="neo-box p-8" data-aos="fade-right">
                <h2 class="text-3xl md:text-4xl font-bold title-font mb-4">CORE THEME</h2>
                <p class="text-lg">The interview explores the intersection of technology and creativity in modern business environments, emphasizing innovative approaches to problem-solving.</p>
            </div>
            <div class="relative" data-aos="fade-left" data-aos-delay="300">
                <div class="neo-box p-6 absolute -top-4 -right-4 swirl-in">
                    <i data-feather="zap" width="50" height="50"></i>
                </div>
                <img src="http://static.photos/technology/640x360/1" alt="Technology Concept" class="w-full h-64 object-cover neo-box">
            </div>
        </div>
        <div class="absolute bottom-10 right-10">
            <button onclick="showSlide(3)" class="neo-box px-6 py-3 slide-btn flex items-center">
                Next <i data-feather="arrow-right" class="ml-2"></i>
            </button>
        </div>
    </section>

    <!-- Slide 3: Key Point 1 -->
    <section id="slide3" class="slide hidden">
        <div class="max-w-4xl mx-auto">
            <div class="grid grid-cols-1 md:grid-cols-2 gap-8 items-start mb-10">
                <div class="neo-box p-8" data-aos="zoom-in">
                    <h2 class="text-3xl md:text-4xl font-bold title-font mb-6">INNOVATION MINDSET</h2>
                    <ul class="space-y-4 text-lg">
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-400 mr-3 mt-1"></i>
                            <span>Embrace experimentation and calculated risk-taking</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-400 mr-3 mt-1"></i>
                            <span>Foster cross-disciplinary collaboration</span>
                        </li>
                        <li class="flex items-start">
                            <i data-feather="check-circle" class="text-green-400 mr-3 mt-1"></i>
                            <span>Challenge conventional industry practices</span>
                        </li>
                    </ul>
                </div>
                <div class="neo-box p-6" data-aos="zoom-in" data-aos-delay="300">
                    <h3 class="text-xl font-bold title-font mb-4 text-center">Innovation Impact Factors</h3>
                    <div class="flex items-end justify-between h-48 mt-6 px-4">
                        <div class="flex flex-col items-center">
                            <div class="bg-blue-400 w-12 h-32 neo-box mb-2" style="height: 80%;"></div>
                            <span class="text-sm">Experimentation</span>
                        </div>
                        <div class="flex flex-col items-center">
                            <div class="bg-green-400 w-12 h-40 neo-box mb-2" style="height: 95%;"></div>
                            <span class="text-sm">Collaboration</span>
                        </div>
                        <div class="flex flex-col items-center">
                            <div class="bg-yellow-400 w-12 h-36 neo-box mb-2" style="height: 85%;"></div>
                            <span class="text-sm">Risk-taking</span>
                        </div>
                        <div class="flex flex-col items-center">
                            <div class="bg-red-400 w-12 h-28 neo-box mb-2" style="height: 70%;"></div>
                            <span class="text-sm">Conventional</span>
                        </div>
                    </div>
                </div>
            </div>
            <div class="flex justify-center bounce">
                <i data-feather="lightbulb" width="40" height="40" class="text-yellow-300"></i>
            </div>
        </div>
        <div class="absolute bottom-10 right-10">
            <button onclick="showSlide(4)" class="neo-box px-6 py-3 slide-btn flex items-center">
                Next <i data-feather="arrow-right" class="ml-2"></i>
            </button>
        </div>
    </section>

    <!-- Slide 4: Key Point 2 -->
    <section id="slide4" class="slide hidden">
        <div class="max-w-5xl mx-auto">
            <h2 class="text-4xl md:text-5xl font-bold title-font text-center mb-12" data-aos="fade-down">ADAPTATION STRATEGIES</h2>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
                <div class="neo-box p-6 text-center" data-aos="flip-left" data-aos-delay="100">
                    <i data-feather="refresh-cw" class="mx-auto text-blue-400 mb-4" width="40" height="40"></i>
                    <h3 class="font-bold text-xl mb-2">Agile Response</h3>
                    <p>Quick adaptation to market changes and feedback</p>
                </div>
                <div class="neo-box p-6 text-center" data-aos="flip-left" data-aos-delay="300">
                    <i data-feather="users" class="mx-auto text-pink-400 mb-4" width="40" height="40"></i>
                    <h3 class="font-bold text-xl mb-2">Team Dynamics</h3>
                    <p>Leveraging diverse perspectives for innovation</p>
                </div>
                <div class="neo-box p-6 text-center" data-aos="flip-left" data-aos-delay="500">
                    <i data-feather="trending-up" class="mx-auto text-green-400 mb-4" width="40" height="40"></i>
                    <h3 class="font-bold text-xl mb-2">Growth Focus</h3>
                    <p>Continuous learning and skill development</p>
                </div>
            </div>
        </div>
        <div class="absolute bottom-10 right-10">
            <button onclick="showSlide(5)" class="neo-box px-6 py-3 slide-btn flex items-center">
                Next <i data-feather="arrow-right" class="ml-2"></i>
            </button>
        </div>
    </section>

    <!-- Slide 5: Key Point 3 -->
    <section id="slide5" class="slide hidden">
        <div class="max-w-4xl mx-auto">
            <div class="neo-box p-8" data-aos="fade-up">
                <h2 class="text-3xl md:text-4xl font-bold title-font mb-6">FUTURE OUTLOOK</h2>
                <p class="text-lg mb-6">The interview highlights several emerging trends that will shape the industry landscape in coming years:</p>
                <div class="grid grid-cols-1 md:grid-cols-2 gap-6">
                    <div class="flex items-start">
                        <i data-feather="arrow-right" class="text-red-400 mr-3 mt-1"></i>
                        <div>
                            <h4 class="font-bold">AI Integration</h4>
                            <p class="text-sm">Increasing use of artificial intelligence in creative processes</p>
                        </div>
                    </div>
                    <div class="flex items-start">
                        <i data-feather="arrow-right" class="text-red-400 mr-3 mt-1"></i>
                        <div>
                            <h4 class="font-bold">Remote Collaboration</h4>
                            <p class="text-sm">New tools and methods for distributed teams</p>
                        </div>
                    </div>
                    <div class="flex items-start">
                        <i data-feather="arrow-right" class="text-red-400 mr-3 mt-1"></i>
                        <div>
                            <h4 class="font-bold">Sustainable Innovation</h4>
                            <p class="text-sm">Eco-conscious approaches to technology development</p>
                        </div>
                    </div>
                    <div class="flex items-start">
                        <i data-feather="arrow-right" class="text-red-400 mr-3 mt-1"></i>
                        <div>
                            <h4 class="font-bold">Ethical Considerations</h4>
                            <p class="text-sm">Balancing progress with responsible practices</p>
                        </div>
                    </div>
                </div>
            </div>
        </div>
        <div class="absolute bottom-10 right-10">
            <button onclick="showSlide(6)" class="neo-box px-6 py-3 slide-btn flex items-center">
                Next <i data-feather="arrow-right" class="ml-2"></i>
            </button>
        </div>
    </section>

    <!-- Slide 6: Conclusion -->
    <section id="slide6" class="slide hidden">
        <div class="max-w-3xl mx-auto text-center">
            <h2 class="text-4xl md:text-5xl font-bold title-font mb-8" data-aos="fade-down">KEY TAKEAWAYS</h2>
            <div class="neo-box p-8 mb-10" data-aos="zoom-in">
                <p class="text-xl mb-6">The interview emphasizes that success in today's environment requires:</p>
                <ul class="space-y-3 text-lg">
                    <li class="flex justify-center items-center">
                        <i data-feather="heart" class="text-red-400 mr-3"></i>
                        Passion for innovation
                    </li>
                    <li class="flex justify-center items-center">
                        <i data-feather="target" class="text-blue-400 mr-3"></i>
                        Clear strategic vision
                    </li>
                    <li class="flex justify-center items-center">
                        <i data-feather="shield" class="text-green-400 mr-3"></i>
                        Resilience in facing challenges
                    </li>
                    <li class="flex justify-center items-center">
                        <i data-feather="award" class="text-yellow-400 mr-3"></i>
                        Commitment to excellence
                    </li>
                </ul>
            </div>
            <div class="bounce">
                <i data-feather="feather" width="40" height="40"></i>
            </div>
        </div>
        <div class="absolute bottom-10 left-10">
            <button onclick="showSlide(1)" class="neo-box px-6 py-3 slide-btn flex items-center">
                <i data-feather="rotate-ccw" class="mr-2"></i> Restart
            </button>
        </div>
    </section>

    <script>
        // Initialize animations
        AOS.init({
            duration: 800,
            once: true
        });
        feather.replace();
        
        // Slide management
        function showSlide(slideNumber) {
            // Hide all slides
            document.querySelectorAll('.slide').forEach(slide => {
                slide.classList.add('hidden');
            });
            // Show selected slide
            document.getElementById('slide' + slideNumber).classList.remove('hidden');
            
            // Add entrance animation to elements
            setTimeout(() => {
                AOS.refresh();
            }, 50);
        }
        
        // Initial slide show
        document.addEventListener('DOMContentLoaded', function() {
            showSlide(1);
        });
    </script>
</body>
</html>