File size: 15,217 Bytes
c467c78
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63fe2ae
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Creative Workspace</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <style>
        .gradient-bg {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        }
        .workspace-card {
            transition: all 0.3s ease;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .workspace-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .tool-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 16px;
            font-size: 24px;
            color: white;
            margin-bottom: 15px;
        }
        .inspiration-item {
            background-size: cover;
            background-position: center;
            height: 200px;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }
        .inspiration-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .inspiration-item:hover .inspiration-overlay {
            transform: translateY(0);
        }
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
    </style>
</head>
<body class="gradient-bg min-h-screen font-sans">
    <header class="bg-white bg-opacity-90 shadow-sm">
        <div class="container mx-auto px-6 py-4">
            <div class="flex items-center justify-between">
                <div class="flex items-center">
                    <i class="fas fa-laptop-code text-3xl text-indigo-600 mr-3"></i>
                    <h1 class="text-2xl font-bold text-gray-800">Creative Workspace</h1>
                </div>
                <nav class="hidden md:flex space-x-8">
                    <a href="#" class="text-indigo-600 font-medium">Home</a>
                    <a href="#" class="text-gray-600 hover:text-indigo-600 transition">Tools</a>
                    <a href="#" class="text-gray-600 hover:text-indigo-600 transition">Inspiration</a>
                    <a href="#" class="text-gray-600 hover:text-indigo-600 transition">Collaboration</a>
                </nav>
                <button class="md:hidden text-gray-600">
                    <i class="fas fa-bars text-2xl"></i>
                </button>
            </div>
        </div>
    </header>

    <main class="container mx-auto px-6 py-12">
        <!-- Hero Section -->
        <section class="flex flex-col md:flex-row items-center mb-20">
            <div class="md:w-1/2 mb-10 md:mb-0">
                <h1 class="text-4xl md:text-5xl font-bold text-gray-800 leading-tight mb-6">
                    My <span class="text-indigo-600">Creative</span> Workspace
                </h1>
                <p class="text-lg text-gray-600 mb-8">
                    A meticulously designed environment that enhances creativity, optimizes workflow, and fosters innovation. Every element is thoughtfully curated to propel both individual and collaborative success.
                </p>
                <div class="flex space-x-4">
                    <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium transition shadow-md">
                        Explore Tools
                    </button>
                    <button class="border border-indigo-600 text-indigo-600 hover:bg-indigo-50 px-6 py-3 rounded-lg font-medium transition">
                        Virtual Tour
                    </button>
                </div>
            </div>
            <div class="md:w-1/2 flex justify-center">
                <div class="relative w-full max-w-md">
                    <img src="https://images.unsplash.com/photo-1517502884422-41eaead166d4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" 
                         alt="Workspace" 
                         class="rounded-xl shadow-2xl w-full h-auto animate-float">
                    <div class="absolute -bottom-6 -left-6 bg-white p-4 rounded-lg shadow-lg">
                        <div class="flex items-center">
                            <div class="bg-indigo-100 p-3 rounded-full mr-3">
                                <i class="fas fa-lightbulb text-indigo-600"></i>
                            </div>
                            <div>
                                <p class="text-sm text-gray-500">Daily Inspiration</p>
                                <p class="font-medium">Creative Flow</p>
                            </div>
                        </div>
                    </div>
                </div>
            </div>
        </section>

        <!-- Digital Tools Section -->
        <section class="mb-20">
            <div class="text-center mb-12">
                <h2 class="text-3xl font-bold text-gray-800 mb-4">Digital Toolkit</h2>
                <p class="text-gray-600 max-w-2xl mx-auto">
                    State-of-the-art platforms and software that streamline my creative process and enhance productivity.
                </p>
            </div>
            <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
                <!-- Tool 1 -->
                <div class="bg-white rounded-xl p-6 workspace-card">
                    <div class="tool-icon bg-gradient-to-r from-blue-500 to-blue-400">
                        <i class="fas fa-comments"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-800 mb-3">Communication</h3>
                    <p class="text-gray-600 mb-4">
                        Seamless collaboration with colleagues through advanced communication platforms.
                    </p>
                    <div class="flex flex-wrap gap-2">
                        <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Slack</span>
                        <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Zoom</span>
                        <span class="bg-blue-100 text-blue-800 text-xs px-3 py-1 rounded-full">Teams</span>
                    </div>
                </div>
                
                <!-- Tool 2 -->
                <div class="bg-white rounded-xl p-6 workspace-card">
                    <div class="tool-icon bg-gradient-to-r from-purple-500 to-purple-400">
                        <i class="fas fa-project-diagram"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-800 mb-3">Project Management</h3>
                    <p class="text-gray-600 mb-4">
                        Sophisticated systems to organize, track, and manage all creative projects.
                    </p>
                    <div class="flex flex-wrap gap-2">
                        <span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Trello</span>
                        <span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Asana</span>
                        <span class="bg-purple-100 text-purple-800 text-xs px-3 py-1 rounded-full">Jira</span>
                    </div>
                </div>
                
                <!-- Tool 3 -->
                <div class="bg-white rounded-xl p-6 workspace-card">
                    <div class="tool-icon bg-gradient-to-r from-green-500 to-green-400">
                        <i class="fas fa-paint-brush"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-800 mb-3">Design Suite</h3>
                    <p class="text-gray-600 mb-4">
                        Professional creative software for visual design, prototyping, and asset creation.
                    </p>
                    <div class="flex flex-wrap gap-2">
                        <span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Figma</span>
                        <span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Adobe CC</span>
                        <span class="bg-green-100 text-green-800 text-xs px-3 py-1 rounded-full">Sketch</span>
                    </div>
                </div>
                
                <!-- Tool 4 -->
                <div class="bg-white rounded-xl p-6 workspace-card">
                    <div class="tool-icon bg-gradient-to-r from-red-500 to-red-400">
                        <i class="fas fa-code"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-800 mb-3">Development</h3>
                    <p class="text-gray-600 mb-4">
                        Powerful coding environments and version control for technical implementation.
                    </p>
                    <div class="flex flex-wrap gap-2">
                        <span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">VS Code</span>
                        <span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">GitHub</span>
                        <span class="bg-red-100 text-red-800 text-xs px-3 py-1 rounded-full">Docker</span>
                    </div>
                </div>
            </div>
        </section>

        <!-- Inspiration Section -->
        <section class="mb-20">
            <div class="text-center mb-12">
                <h2 class="text-3xl font-bold text-gray-800 mb-4">Creative Inspiration</h2>
                <p class="text-gray-600 max-w-2xl mx-auto">
                    Elements in my workspace that ignite creativity and foster innovative thinking.
                </p>
            </div>
            <div class="grid grid-cols-1 md:grid-cols-3 gap-6">
                <!-- Inspiration 1 -->
                <div class="inspiration-item" style="background-image: url('https://images.unsplash.com/photo-1454165804606-3cfe5a5a570a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80')">
                    <div class="inspiration-overlay">
                        <h3 class="font-bold text-lg">Minimalist Design</h3>
                        <p class="text-sm">Clean, distraction-free environment for focused creativity</p>
                    </div>
                </div>
                
                <!-- Inspiration 2 -->
                <div class="inspiration-item" style="background-image: url('https://images.unsplash.com/photo-1513542789411-b6a5d4f31634?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80')">
                    <div class="inspiration-overlay">
                        <h3 class="font-bold text-lg">Natural Elements</h3>
                        <p class="text-sm">Plants and natural light to boost mood and creativity</p>
                    </div>
                </div>
                
                <!-- Inspiration 3 -->
                <div class="inspiration-item" style="background-image: url('https://images.unsplash.com/photo-1452421822248-d4c2b47f0c81?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1374&q=80')">
                    <div class="inspiration-overlay">
                        <h3 class="font-bold text-lg">Inspiration Board</h3>
                        <p class="text-sm">Visual collection of ideas, colors, and concepts</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- Collaboration Section -->
        <section class="bg-white rounded-xl shadow-lg overflow-hidden">
            <div class="flex flex-col md:flex-row">
                <div class="md:w-1/2 p-10">
                    <h2 class="text-3xl font-bold text-gray-800 mb-6">Collaborative Synergy</h2>
                    <p class="text-gray-600 mb-6">
                        My workspace is designed to cultivate meaningful collaborations with colleagues and industry experts, creating a dynamic environment that drives forward-thinking advancements.
                    </p>
                    <ul class="space-y-4 mb-8">
                        <li class="flex items-start">
                            <div class="bg-indigo-100 p-2 rounded-full mr-4">
                                <i class="fas fa-users text-indigo-600"></i>
                            </div>
                            <div>
                                <h4 class="font-medium text-gray-800">Brainstorming Sessions</h4>
                                <p class="text-gray-600 text-sm">Interactive whiteboards for collective ideation</p>
                            </div>
                        </li>
                        <li class="flex items-start">
                            <div class="bg-indigo-100 p-2 rounded-full mr-4">
                                <i class="fas fa-share-alt text-indigo-600"></i>
                            </div>
                            <div>
                                <h4 class="font-medium text-gray-800">Seamless Sharing</h4>
                                <p class="text-gray-600 text-sm">Instant access to resources and files</p>
                            </div>
                        </li>
                        <li class="flex items-start">
                            <div class="bg-indigo-100 p-2 rounded-full mr-4">
                                <i class="fas fa-comment-dots text-indigo-600"></i>
                            </div>
                            <div>
                                <h4 class="font-medium text-gray-800">Real-time Feedback</h4>
                                <p class="text-gray-600 text-sm">Quick iterations with immediate input</p>
                            </div>
                        </li>
                    </ul>
                    <button class="bg-indigo-600 hover:bg-indigo-700 text-white px-6 py-3 rounded-lg font-medium transition shadow-md">
                        Connect With Me
                    </button>
                </div>
                <div class="md:w-1/2 bg-indigo-50 flex items-center justify-center p-10">
                    <img src="https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80" 
                         alt="Collaboration" 
                         class="rounded-lg shadow-md w-full h-auto">
               
</html>