kjaylee commited on
Commit
fc106f7
ยท
verified ยท
1 Parent(s): e7123ec

undefined - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +567 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Pipln
3
- emoji: ๐Ÿƒ
4
- colorFrom: red
5
- colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: pipln
3
+ emoji: ๐Ÿณ
4
+ colorFrom: yellow
5
+ colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,567 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ko">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Creative Web Solution</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ /* ์ปค์Šคํ…€ ์• ๋‹ˆ๋ฉ”์ด์…˜ */
11
+ @keyframes float {
12
+ 0%, 100% { transform: translateY(0); }
13
+ 50% { transform: translateY(-20px); }
14
+ }
15
+ .floating { animation: float 6s ease-in-out infinite; }
16
+
17
+ /* ์ปค์Šคํ…€ ์Šคํฌ๋กค๋ฐ” */
18
+ ::-webkit-scrollbar {
19
+ width: 8px;
20
+ }
21
+ ::-webkit-scrollbar-track {
22
+ background: #f1f1f1;
23
+ }
24
+ ::-webkit-scrollbar-thumb {
25
+ background: #4f46e5;
26
+ border-radius: 4px;
27
+ }
28
+ ::-webkit-scrollbar-thumb:hover {
29
+ background: #4338ca;
30
+ }
31
+
32
+ /* ๊ธ€๋ž˜์Šค๋ชจํ”ผ์ฆ˜ ํšจ๊ณผ */
33
+ .glass {
34
+ background: rgba(255, 255, 255, 0.15);
35
+ backdrop-filter: blur(10px);
36
+ -webkit-backdrop-filter: blur(10px);
37
+ border: 1px solid rgba(255, 255, 255, 0.18);
38
+ }
39
+ </style>
40
+ </head>
41
+ <body class="bg-gradient-to-br from-indigo-900 via-purple-900 to-pink-800 text-white min-h-screen font-sans">
42
+ <!-- ๋„ค๋น„๊ฒŒ์ด์…˜ ๋ฐ” -->
43
+ <nav class="glass fixed w-full z-50">
44
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
45
+ <div class="flex items-center justify-between h-16">
46
+ <div class="flex items-center">
47
+ <div class="flex-shrink-0">
48
+ <span class="text-xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-pink-400 to-indigo-300">CreativeWeb</span>
49
+ </div>
50
+ <div class="hidden md:block">
51
+ <div class="ml-10 flex items-baseline space-x-4">
52
+ <a href="#home" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition duration-300">ํ™ˆ</a>
53
+ <a href="#services" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition duration-300">์„œ๋น„์Šค</a>
54
+ <a href="#portfolio" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition duration-300">ํฌํŠธํด๋ฆฌ์˜ค</a>
55
+ <a href="#about" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition duration-300">์†Œ๊ฐœ</a>
56
+ <a href="#contact" class="px-3 py-2 rounded-md text-sm font-medium hover:bg-indigo-700 transition duration-300">์—ฐ๋ฝ์ฒ˜</a>
57
+ </div>
58
+ </div>
59
+ </div>
60
+ <div class="hidden md:block">
61
+ <button class="bg-pink-500 hover:bg-pink-600 px-4 py-2 rounded-md text-sm font-medium transition duration-300">
62
+ ๋ฌธ์˜ํ•˜๊ธฐ
63
+ </button>
64
+ </div>
65
+ <div class="-mr-2 flex md:hidden">
66
+ <button id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-white hover:bg-gray-700 focus:outline-none">
67
+ <svg class="h-6 w-6" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor">
68
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" />
69
+ </svg>
70
+ </button>
71
+ </div>
72
+ </div>
73
+ </div>
74
+
75
+ <!-- ๋ชจ๋ฐ”์ผ ๋ฉ”๋‰ด -->
76
+ <div id="mobile-menu" class="hidden md:hidden">
77
+ <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
78
+ <a href="#home" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-indigo-700">ํ™ˆ</a>
79
+ <a href="#services" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-indigo-700">์„œ๋น„์Šค</a>
80
+ <a href="#portfolio" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-indigo-700">ํฌํŠธํด๋ฆฌ์˜ค</a>
81
+ <a href="#about" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-indigo-700">์†Œ๊ฐœ</a>
82
+ <a href="#contact" class="block px-3 py-2 rounded-md text-base font-medium hover:bg-indigo-700">์—ฐ๋ฝ์ฒ˜</a>
83
+ <button class="block w-full text-left px-3 py-2 rounded-md text-base font-medium bg-pink-500 hover:bg-pink-600 mt-2">
84
+ ๋ฌธ์˜ํ•˜๊ธฐ
85
+ </button>
86
+ </div>
87
+ </div>
88
+ </nav>
89
+
90
+ <!-- ํ—ค๋กœ ์„น์…˜ -->
91
+ <section id="home" class="pt-32 pb-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
92
+ <div class="flex flex-col md:flex-row items-center">
93
+ <div class="md:w-1/2 mb-10 md:mb-0">
94
+ <h1 class="text-4xl md:text-6xl font-bold leading-tight mb-6">
95
+ <span class="bg-clip-text text-transparent bg-gradient-to-r from-pink-400 to-indigo-300">์ฐฝ์˜์ ์ธ ์›น ์†”๋ฃจ์…˜</span><br>
96
+ <span class="text-xl md:text-2xl font-normal">๋‹น์‹ ์˜ ๋น„์ „์„ ํ˜„์‹ค๋กœ ๊ตฌํ˜„ํ•ฉ๋‹ˆ๋‹ค</span>
97
+ </h1>
98
+ <p class="text-lg text-gray-300 mb-8">
99
+ ์šฐ๋ฆฌ๋Š” ํ˜์‹ ์ ์ธ ์›น ๋””์ž์ธ๊ณผ ๊ฐœ๋ฐœ ์„œ๋น„์Šค๋ฅผ ์ œ๊ณตํ•˜์—ฌ ๋น„์ฆˆ๋‹ˆ์Šค์˜ ์„ฑ์žฅ์„ ๋•์Šต๋‹ˆ๋‹ค.
100
+ ์ตœ์‹  ๊ธฐ์ˆ ๊ณผ ์ฐฝ์˜์ ์ธ ์ ‘๊ทผ ๋ฐฉ์‹์œผ๋กœ ๊ณ ๊ฐ์˜ ์š”๊ตฌ๋ฅผ ์ถฉ์กฑ์‹œํ‚ต๋‹ˆ๋‹ค.
101
+ </p>
102
+ <div class="flex flex-col sm:flex-row space-y-4 sm:space-y-0 sm:space-x-4">
103
+ <button class="bg-pink-500 hover:bg-pink-600 px-6 py-3 rounded-lg text-lg font-medium transition duration-300 transform hover:scale-105">
104
+ ํ”„๋กœ์ ํŠธ ์‹œ์ž‘ํ•˜๊ธฐ
105
+ </button>
106
+ <button class="border border-white hover:bg-white hover:text-indigo-900 px-6 py-3 rounded-lg text-lg font-medium transition duration-300 transform hover:scale-105">
107
+ ๋” ์•Œ์•„๋ณด๊ธฐ
108
+ </button>
109
+ </div>
110
+ </div>
111
+ <div class="md:w-1/2 flex justify-center">
112
+ <div class="relative w-full max-w-md">
113
+ <div class="absolute -top-10 -left-10 w-32 h-32 bg-pink-500 rounded-full opacity-20 animate-pulse"></div>
114
+ <div class="absolute -bottom-10 -right-10 w-32 h-32 bg-indigo-500 rounded-full opacity-20 animate-pulse delay-300"></div>
115
+ <img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80"
116
+ alt="์›น ๊ฐœ๋ฐœ"
117
+ class="relative rounded-2xl shadow-2xl floating border-4 border-white">
118
+ </div>
119
+ </div>
120
+ </div>
121
+ </section>
122
+
123
+ <!-- ์„œ๋น„์Šค ์„น์…˜ -->
124
+ <section id="services" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
125
+ <div class="text-center mb-16">
126
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">์šฐ๋ฆฌ์˜ ์ „๋ฌธ ์„œ๋น„์Šค</h2>
127
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
128
+ ๋‹ค์–‘ํ•œ ์‚ฐ์—… ๋ถ„์•ผ์— ๋งž์ถคํ˜• ์†”๋ฃจ์…˜์„ ์ œ๊ณตํ•˜์—ฌ ๋น„์ฆˆ๋‹ˆ์Šค์˜ ๋””์ง€ํ„ธ ์ „ํ™˜์„ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค.
129
+ </p>
130
+ </div>
131
+
132
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
133
+ <!-- ์„œ๋น„์Šค 1 -->
134
+ <div class="glass p-8 rounded-xl hover:shadow-lg transition duration-500 transform hover:-translate-y-2">
135
+ <div class="w-16 h-16 bg-pink-500 rounded-lg flex items-center justify-center mb-6">
136
+ <i class="fas fa-laptop-code text-2xl text-white"></i>
137
+ </div>
138
+ <h3 class="text-xl font-bold mb-3">์›น ๊ฐœ๋ฐœ</h3>
139
+ <p class="text-gray-300 mb-4">
140
+ ๋ฐ˜์‘ํ˜• ์›น์‚ฌ์ดํŠธ ๊ฐœ๋ฐœ๋ถ€ํ„ฐ ๋ณต์žกํ•œ ์›น ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜๊นŒ์ง€ ๋ชจ๋“  ์š”๊ตฌ ์‚ฌํ•ญ์„ ์ถฉ์กฑ์‹œํ‚ต๋‹ˆ๋‹ค.
141
+ </p>
142
+ <a href="#" class="text-pink-400 hover:text-pink-300 font-medium flex items-center">
143
+ ๋” ์•Œ์•„๋ณด๊ธฐ <i class="fas fa-arrow-right ml-2"></i>
144
+ </a>
145
+ </div>
146
+
147
+ <!-- ์„œ๋น„์Šค 2 -->
148
+ <div class="glass p-8 rounded-xl hover:shadow-lg transition duration-500 transform hover:-translate-y-2">
149
+ <div class="w-16 h-16 bg-indigo-500 rounded-lg flex items-center justify-center mb-6">
150
+ <i class="fas fa-mobile-alt text-2xl text-white"></i>
151
+ </div>
152
+ <h3 class="text-xl font-bold mb-3">๋ชจ๋ฐ”์ผ ์•ฑ</h3>
153
+ <p class="text-gray-300 mb-4">
154
+ iOS ๋ฐ Android ํ”Œ๋žซํผ์„ ์œ„ํ•œ ๊ณ ์„ฑ๋Šฅ ๋ชจ๋ฐ”์ผ ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜์„ ๊ฐœ๋ฐœํ•ฉ๋‹ˆ๋‹ค.
155
+ </p>
156
+ <a href="#" class="text-indigo-400 hover:text-indigo-300 font-medium flex items-center">
157
+ ๋” ์•Œ์•„๋ณด๊ธฐ <i class="fas fa-arrow-right ml-2"></i>
158
+ </a>
159
+ </div>
160
+
161
+ <!-- ์„œ๋น„์Šค 3 -->
162
+ <div class="glass p-8 rounded-xl hover:shadow-lg transition duration-500 transform hover:-translate-y-2">
163
+ <div class="w-16 h-16 bg-purple-500 rounded-lg flex items-center justify-center mb-6">
164
+ <i class="fas fa-paint-brush text-2xl text-white"></i>
165
+ </div>
166
+ <h3 class="text-xl font-bold mb-3">UI/UX ๋””์ž์ธ</h3>
167
+ <p class="text-gray-300 mb-4">
168
+ ์‚ฌ์šฉ์ž ๊ฒฝํ—˜์„ ์ค‘์‹ฌ์œผ๋กœ ํ•œ ์ง๊ด€์ ์ด๊ณ  ์•„๋ฆ„๋‹ค์šด ์ธํ„ฐํŽ˜์ด์Šค๋ฅผ ๋””์ž์ธํ•ฉ๋‹ˆ๋‹ค.
169
+ </p>
170
+ <a href="#" class="text-purple-400 hover:text-purple-300 font-medium flex items-center">
171
+ ๋” ์•Œ์•„๋ณด๊ธฐ <i class="fas fa-arrow-right ml-2"></i>
172
+ </a>
173
+ </div>
174
+
175
+ <!-- ์„œ๋น„์Šค 4 -->
176
+ <div class="glass p-8 rounded-xl hover:shadow-lg transition duration-500 transform hover:-translate-y-2">
177
+ <div class="w-16 h-16 bg-blue-500 rounded-lg flex items-center justify-center mb-6">
178
+ <i class="fas fa-search-dollar text-2xl text-white"></i>
179
+ </div>
180
+ <h3 class="text-xl font-bold mb-3">๋””์ง€ํ„ธ ๋งˆ์ผ€ํŒ…</h3>
181
+ <p class="text-gray-300 mb-4">
182
+ ๊ฒ€์ƒ‰ ์—”์ง„ ์ตœ์ ํ™”์™€ ์†Œ์…œ ๋ฏธ๋””์–ด ์ „๋žต์œผ๋กœ ์˜จ๋ผ์ธ ๊ฐ€์‹œ์„ฑ์„ ๋†’์ž…๋‹ˆ๋‹ค.
183
+ </p>
184
+ <a href="#" class="text-blue-400 hover:text-blue-300 font-medium flex items-center">
185
+ ๋” ์•Œ์•„๋ณด๊ธฐ <i class="fas fa-arrow-right ml-2"></i>
186
+ </a>
187
+ </div>
188
+
189
+ <!-- ์„œ๋น„์Šค 5 -->
190
+ <div class="glass p-8 rounded-xl hover:shadow-lg transition duration-500 transform hover:-translate-y-2">
191
+ <div class="w-16 h-16 bg-green-500 rounded-lg flex items-center justify-center mb-6">
192
+ <i class="fas fa-chart-line text-2xl text-white"></i>
193
+ </div>
194
+ <h3 class="text-xl font-bold mb-3">๋ฐ์ดํ„ฐ ๋ถ„์„</h3>
195
+ <p class="text-gray-300 mb-4">
196
+ ๋น…๋ฐ์ดํ„ฐ ๋ถ„์„์„ ํ†ตํ•ด ๋น„์ฆˆ๋‹ˆ์Šค ์ธ์‚ฌ์ดํŠธ๋ฅผ ์ œ๊ณตํ•˜๊ณ  ์˜์‚ฌ ๊ฒฐ์ •์„ ์ง€์›ํ•ฉ๋‹ˆ๋‹ค.
197
+ </p>
198
+ <a href="#" class="text-green-400 hover:text-green-300 font-medium flex items-center">
199
+ ๋” ์•Œ์•„๋ณด๊ธฐ <i class="fas fa-arrow-right ml-2"></i>
200
+ </a>
201
+ </div>
202
+
203
+ <!-- ์„œ๋น„์Šค 6 -->
204
+ <div class="glass p-8 rounded-xl hover:shadow-lg transition duration-500 transform hover:-translate-y-2">
205
+ <div class="w-16 h-16 bg-yellow-500 rounded-lg flex items-center justify-center mb-6">
206
+ <i class="fas fa-cloud text-2xl text-white"></i>
207
+ </div>
208
+ <h3 class="text-xl font-bold mb-3">ํด๋ผ์šฐ๋“œ ์†”๋ฃจ์…˜</h3>
209
+ <p class="text-gray-300 mb-4">
210
+ ์•ˆ์ „ํ•˜๊ณ  ํ™•์žฅ ๊ฐ€๋Šฅํ•œ ํด๋ผ์šฐ๋“œ ์ธํ”„๋ผ ๊ตฌ์ถ•์œผ๋กœ ๋น„์ฆˆ๋‹ˆ์Šค ์šด์˜์„ ์ตœ์ ํ™”ํ•ฉ๋‹ˆ๋‹ค.
211
+ </p>
212
+ <a href="#" class="text-yellow-400 hover:text-yellow-300 font-medium flex items-center">
213
+ ๋” ์•Œ์•„๋ณด๊ธฐ <i class="fas fa-arrow-right ml-2"></i>
214
+ </a>
215
+ </div>
216
+ </div>
217
+ </section>
218
+
219
+ <!-- ํฌํŠธํด๋ฆฌ์˜ค ์„น์…˜ -->
220
+ <section id="portfolio" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-black bg-opacity-20">
221
+ <div class="text-center mb-16">
222
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">์šฐ๋ฆฌ์˜ ์ž‘์—…</h2>
223
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
224
+ ๋‹ค์–‘ํ•œ ์‚ฐ์—… ๋ถ„์•ผ์˜ ๊ณ ๊ฐ๋“ค๊ณผ ํ•จ๊ป˜ํ•œ ์„ฑ๊ณต์ ์ธ ํ”„๋กœ์ ํŠธ๋ฅผ ์†Œ๊ฐœํ•ฉ๋‹ˆ๋‹ค.
225
+ </p>
226
+ </div>
227
+
228
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
229
+ <!-- ํ”„๋กœ์ ํŠธ 1 -->
230
+ <div class="relative group overflow-hidden rounded-xl">
231
+ <img src="https://images.unsplash.com/photo-1547658719-da2b51169166?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80"
232
+ alt="์ด์ปค๋จธ์Šค ์›น์‚ฌ์ดํŠธ"
233
+ class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
234
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-6">
235
+ <div>
236
+ <h3 class="text-xl font-bold text-white mb-2">์ด์ปค๋จธ์Šค ํ”Œ๋žซํผ</h3>
237
+ <p class="text-gray-300">์˜จ๋ผ์ธ ํ•‘๋ชฐ ๊ตฌ์ถ• ๋ฐ ํ†ตํ•ฉ ๊ฒฐ์ œ ์‹œ์Šคํ…œ ๊ฐœ๋ฐœ</p>
238
+ <button class="mt-3 px-4 py-2 bg-pink-500 text-white rounded-md text-sm font-medium hover:bg-pink-600 transition duration-300">
239
+ ์ž์„ธํžˆ ๋ณด๊ธฐ
240
+ </button>
241
+ </div>
242
+ </div>
243
+ </div>
244
+
245
+ <!-- ํ”„๋กœ์ ํŠธ 2 -->
246
+ <div class="relative group overflow-hidden rounded-xl">
247
+ <img src="https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80"
248
+ alt="๊ธฐ์—… ์›น์‚ฌ์ดํŠธ"
249
+ class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
250
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-6">
251
+ <div>
252
+ <h3 class="text-xl font-bold text-white mb-2">๊ธฐ์—… ์›น์‚ฌ์ดํŠธ</h3>
253
+ <p class="text-gray-300">๊ธฐ์—… ๋ธŒ๋žœ๋”ฉ์„ ์œ„ํ•œ ํ˜„๋Œ€์ ์ธ ์›น์‚ฌ์ดํŠธ ๋””์ž์ธ ๋ฐ ๊ฐœ๋ฐœ</p>
254
+ <button class="mt-3 px-4 py-2 bg-indigo-500 text-white rounded-md text-sm font-medium hover:bg-indigo-600 transition duration-300">
255
+ ์ž์„ธํžˆ ๋ณด๊ธฐ
256
+ </button>
257
+ </div>
258
+ </div>
259
+ </div>
260
+
261
+ <!-- ํ”„๋กœ์ ํŠธ 3 -->
262
+ <div class="relative group overflow-hidden rounded-xl">
263
+ <img src="https://images.unsplash.com/photo-1522542550221-31fd19575a2d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80"
264
+ alt="๋ชจ๋ฐ”์ผ ์•ฑ"
265
+ class="w-full h-64 object-cover transition duration-500 group-hover:scale-110">
266
+ <div class="absolute inset-0 bg-gradient-to-t from-black to-transparent opacity-0 group-hover:opacity-100 transition duration-300 flex items-end p-6">
267
+ <div>
268
+ <h3 class="text-xl font-bold text-white mb-2">ํ”ผํŠธ๋‹ˆ์Šค ์•ฑ</h3>
269
+ <p class="text-gray-300">๊ฑด๊ฐ• ๊ด€๋ฆฌ ๋ฐ ์šด๋™ ์ถ”์ ์„ ์œ„ํ•œ ๋ชจ๋ฐ”์ผ ์• ํ”Œ๋ฆฌ์ผ€์ด์…˜</p>
270
+ <button class="mt-3 px-4 py-2 bg-purple-500 text-white rounded-md text-sm font-medium hover:bg-purple-600 transition duration-300">
271
+ ์ž์„ธํžˆ ๋ณด๊ธฐ
272
+ </button>
273
+ </div>
274
+ </div>
275
+ </div>
276
+ </div>
277
+
278
+ <div class="text-center mt-12">
279
+ <button class="border-2 border-white hover:bg-white hover:text-indigo-900 px-8 py-3 rounded-lg text-lg font-medium transition duration-300 transform hover:scale-105">
280
+ ๋” ๋งŽ์€ ํ”„๋กœ์ ํŠธ ๋ณด๊ธฐ
281
+ </button>
282
+ </div>
283
+ </section>
284
+
285
+ <!-- ์†Œ๊ฐœ ์„น์…˜ -->
286
+ <section id="about" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto">
287
+ <div class="flex flex-col lg:flex-row items-center">
288
+ <div class="lg:w-1/2 mb-12 lg:mb-0 lg:pr-12">
289
+ <h2 class="text-3xl md:text-4xl font-bold mb-6">์šฐ๋ฆฌ์— ๋Œ€ํ•ด</h2>
290
+ <p class="text-lg text-gray-300 mb-6">
291
+ 10๋…„ ์ด์ƒ์˜ ๊ฒฝํ—˜์„ ๊ฐ€์ง„ ์ „๋ฌธ๊ฐ€๋“ค๋กœ ๊ตฌ์„ฑ๋œ ์šฐ๋ฆฌ ํŒ€์€ ๋””์ง€ํ„ธ ํ˜์‹ ์„ ์„ ๋„ํ•˜๊ณ  ์žˆ์Šต๋‹ˆ๋‹ค.
292
+ ๊ธฐ์ˆ  ์ „๋ฌธ์„ฑ๊ณผ ์ฐฝ์˜์ ์ธ ์ ‘๊ทผ ๋ฐฉ์‹์„ ๊ฒฐํ•ฉํ•˜์—ฌ ๊ณ ๊ฐ์˜ ๋น„์ฆˆ๋‹ˆ์Šค ๋ชฉํ‘œ๋ฅผ ๋‹ฌ์„ฑํ•  ์ˆ˜ ์žˆ๋„๋ก ์ง€์›ํ•ฉ๋‹ˆ๋‹ค.
293
+ </p>
294
+ <p class="text-lg text-gray-300 mb-8">
295
+ ์šฐ๋ฆฌ๋Š” ๊ฐ ํ”„๋กœ์ ํŠธ๋ฅผ ๊ณ ์œ ํ•œ ๋„์ „์œผ๋กœ ๋ฐ›์•„๋“ค์ด๋ฉฐ, ์ตœ์‹  ๊ธฐ์ˆ  ํŠธ๋ Œ๋“œ์™€ ์—…๊ณ„ ๋ชจ๋ฒ” ์‚ฌ๋ก€๋ฅผ
296
+ ์ ์šฉํ•˜์—ฌ ํƒ์›”ํ•œ ๊ฒฐ๊ณผ๋ฅผ ์ œ๊ณตํ•ฉ๋‹ˆ๋‹ค. ๊ณ ๊ฐ๊ณผ์˜ ํ˜‘๋ ฅ์„ ์ตœ์šฐ์„ ์œผ๋กœ ์ƒ๊ฐํ•˜๋ฉฐ,
297
+ ํˆฌ๋ช…ํ•œ ์ปค๋ฎค๋‹ˆ์ผ€์ด์…˜๊ณผ ์ฑ…์ž„๊ฐ ์žˆ๋Š” ํ”„๋กœ์ ํŠธ ๊ด€๋ฆฌ๋ฅผ ์•ฝ์†ํ•ฉ๋‹ˆ๋‹ค.
298
+ </p>
299
+ <div class="grid grid-cols-2 gap-6">
300
+ <div class="bg-white bg-opacity-10 p-4 rounded-lg">
301
+ <div class="text-3xl font-bold text-pink-400 mb-2">150+</div>
302
+ <div class="text-gray-300">์™„๋ฃŒ๋œ ํ”„๋กœ์ ํŠธ</div>
303
+ </div>
304
+ <div class="bg-white bg-opacity-10 p-4 rounded-lg">
305
+ <div class="text-3xl font-bold text-indigo-400 mb-2">50+</div>
306
+ <div class="text-gray-300">๋งŒ์กฑํ•œ ๊ณ ๊ฐ</div>
307
+ </div>
308
+ <div class="bg-white bg-opacity-10 p-4 rounded-lg">
309
+ <div class="text-3xl font-bold text-purple-400 mb-2">10+</div>
310
+ <div class="text-gray-300">์‚ฐ์—… ๋ถ„์•ผ</div>
311
+ </div>
312
+ <div class="bg-white bg-opacity-10 p-4 rounded-lg">
313
+ <div class="text-3xl font-bold text-blue-400 mb-2">24/7</div>
314
+ <div class="text-gray-300">์ง€์› ์„œ๋น„์Šค</div>
315
+ </div>
316
+ </div>
317
+ </div>
318
+ <div class="lg:w-1/2 relative">
319
+ <div class="relative z-10">
320
+ <img src="https://images.unsplash.com/photo-1579389083078-4e7018379f7e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=80"
321
+ alt="์šฐ๋ฆฌ ํŒ€"
322
+ class="rounded-xl shadow-2xl border-4 border-white">
323
+ </div>
324
+ <div class="absolute -bottom-10 -right-10 w-64 h-64 bg-pink-500 rounded-full opacity-20 z-0"></div>
325
+ <div class="absolute -top-10 -left-10 w-64 h-64 bg-indigo-500 rounded-full opacity-20 z-0"></div>
326
+ </div>
327
+ </div>
328
+ </section>
329
+
330
+ <!-- ์—ฐ๋ฝ์ฒ˜ ์„น์…˜ -->
331
+ <section id="contact" class="py-20 px-4 sm:px-6 lg:px-8 max-w-7xl mx-auto bg-black bg-opacity-20">
332
+ <div class="text-center mb-16">
333
+ <h2 class="text-3xl md:text-4xl font-bold mb-4">์—ฐ๋ฝํ•˜๊ธฐ</h2>
334
+ <p class="text-xl text-gray-300 max-w-3xl mx-auto">
335
+ ํ”„๋กœ์ ํŠธ์— ๋Œ€ํ•ด ๋ฌธ์˜ํ•˜๊ฑฐ๋‚˜ ์ž์„ธํ•œ ์ƒ๋‹ด์„ ์›ํ•˜์‹œ๋ฉด ์•„๋ž˜ ์–‘์‹์„ ์ž‘์„ฑํ•ด์ฃผ์„ธ์š”.
336
+ </p>
337
+ </div>
338
+
339
+ <div class="flex flex-col lg:flex-row gap-12">
340
+ <div class="lg:w-1/2">
341
+ <form class="space-y-6">
342
+ <div>
343
+ <label for="name" class="block text-sm font-medium text-gray-300 mb-1">์ด๋ฆ„</label>
344
+ <input type="text" id="name" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-gray-600 focus:border-pink-500 focus:outline-none focus:ring-2 focus:ring-pink-500 transition duration-300" placeholder="์ด๋ฆ„์„ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”">
345
+ </div>
346
+ <div>
347
+ <label for="email" class="block text-sm font-medium text-gray-300 mb-1">์ด๋ฉ”์ผ</label>
348
+ <input type="email" id="email" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-gray-600 focus:border-pink-500 focus:outline-none focus:ring-2 focus:ring-pink-500 transition duration-300" placeholder="์ด๋ฉ”์ผ์„ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”">
349
+ </div>
350
+ <div>
351
+ <label for="subject" class="block text-sm font-medium text-gray-300 mb-1">์ฃผ์ œ</label>
352
+ <input type="text" id="subject" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-gray-600 focus:border-pink-500 focus:outline-none focus:ring-2 focus:ring-pink-500 transition duration-300" placeholder="๋ฌธ์˜ ์ฃผ์ œ๋ฅผ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”">
353
+ </div>
354
+ <div>
355
+ <label for="message" class="block text-sm font-medium text-gray-300 mb-1">๋ฉ”์‹œ์ง€</label>
356
+ <textarea id="message" rows="5" class="w-full px-4 py-3 rounded-lg bg-white bg-opacity-10 border border-gray-600 focus:border-pink-500 focus:outline-none focus:ring-2 focus:ring-pink-500 transition duration-300" placeholder="๋ฉ”์‹œ์ง€๋ฅผ ์ž…๋ ฅํ•ด์ฃผ์„ธ์š”"></textarea>
357
+ </div>
358
+ <button type="submit" class="w-full bg-pink-500 hover:bg-pink-600 px-6 py-3 rounded-lg text-lg font-medium transition duration-300 transform hover:scale-105">
359
+ ๋ฉ”์‹œ์ง€ ๋ณด๋‚ด๊ธฐ
360
+ </button>
361
+ </form>
362
+ </div>
363
+ <div class="lg:w-1/2">
364
+ <div class="glass p-8 rounded-xl h-full">
365
+ <h3 class="text-2xl font-bold mb-6">์—ฐ๋ฝ์ฒ˜ ์ •๋ณด</h3>
366
+
367
+ <div class="space-y-6">
368
+ <div class="flex items-start">
369
+ <div class="flex-shrink-0 bg-pink-500 rounded-lg p-3">
370
+ <i class="fas fa-map-marker-alt text-white"></i>
371
+ </div>
372
+ <div class="ml-4">
373
+ <h4 class="text-lg font-medium">์ฃผ์†Œ</h4>
374
+ <p class="text-gray-300">์„œ์šธํŠน๋ณ„์‹œ ๊ฐ•๋‚จ๊ตฌ ํ…Œํ—ค๋ž€๋กœ 123, ํฌ๋ฆฌ์—์ดํ‹ฐ๋ธŒ ๋นŒ๋”ฉ 10์ธต</p>
375
+ </div>
376
+ </div>
377
+
378
+ <div class="flex items-start">
379
+ <div class="flex-shrink-0 bg-indigo-500 rounded-lg p-3">
380
+ <i class="fas fa-envelope text-white"></i>
381
+ </div>
382
+ <div class="ml-4">
383
+ <h4 class="text-lg font-medium">์ด๋ฉ”์ผ</h4>
384
+ <p class="text-gray-300">contact@creativeweb.com</p>
385
+ </div>
386
+ </div>
387
+
388
+ <div class="flex items-start">
389
+ <div class="flex-shrink-0 bg-purple-500 rounded-lg p-3">
390
+ <i class="fas fa-phone-alt text-white"></i>
391
+ </div>
392
+ <div class="ml-4">
393
+ <h4 class="text-lg font-medium">์ „ํ™”๋ฒˆํ˜ธ</h4>
394
+ <p class="text-gray-300">+82 2-1234-5678</p>
395
+ </div>
396
+ </div>
397
+
398
+ <div class="flex items-start">
399
+ <div class="flex-shrink-0 bg-blue-500 rounded-lg p-3">
400
+ <i class="fas fa-clock text-white"></i>
401
+ </div>
402
+ <div class="ml-4">
403
+ <h4 class="text-lg font-medium">๊ทผ๋ฌด ์‹œ๊ฐ„</h4>
404
+ <p class="text-gray-300">์›”-๊ธˆ: 9:00 - 18:00<br>ํ† -์ผ: ๋ฌด</p>
405
+ </div>
406
+ </div>
407
+ </div>
408
+
409
+ <div class="mt-8">
410
+ <h4 class="text-lg font-medium mb-4">์†Œ์…œ ๋ฏธ๋””์–ด</h4>
411
+ <div class="flex space-x-4">
412
+ <a href="#" class="w-10 h-10 bg-white bg-opacity-10 rounded-full flex items-center justify-center hover:bg-pink-500 transition duration-300">
413
+ <i class="fab fa-facebook-f"></i>
414
+ </a>
415
+ <a href="#" class="w-10 h-10 bg-white bg-opacity-10 rounded-full flex items-center justify-center hover:bg-blue-400 transition duration-300">
416
+ <i class="fab fa-twitter"></i>
417
+ </a>
418
+ <a href="#" class="w-10 h-10 bg-white bg-opacity-10 rounded-full flex items-center justify-center hover:bg-gradient-to-r from-pink-500 to-yellow-500 transition duration-300">
419
+ <i class="fab fa-instagram"></i>
420
+ </a>
421
+ <a href="#" class="w-10 h-10 bg-white bg-opacity-10 rounded-full flex items-center justify-center hover:bg-blue-600 transition duration-300">
422
+ <i class="fab fa-linkedin-in"></i>
423
+ </a>
424
+ </div>
425
+ </div>
426
+ </div>
427
+ </div>
428
+ </div>
429
+ </section>
430
+
431
+ <!-- ํ„ฐ -->
432
+ <footer class="bg-black bg-opacity-40 py-12 px-4 sm:px-6 lg:px-8">
433
+ <div class="max-w-7xl mx-auto">
434
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-8">
435
+ <div>
436
+ <h3 class="text-xl font-bold mb-4 bg-clip-text text-transparent bg-gradient-to-r from-pink-400 to-indigo-300">CreativeWeb</h3>
437
+ <p class="text-gray-400">
438
+ ํ˜์‹ ์ ์ธ ๋””์ง€ํ„ธ ์†”๋ฃจ์…˜์œผ๋กœ ๋น„์ฆˆ๋‹ˆ์Šค์˜ ์„ฑ์žฅ์„ ๋•๋Š” ํฌ๋ฆฌ์—์ดํ‹ฐ๋ธŒ ์›น ๊ฐœ๋ฐœ์‚ฌ์ž…๋‹ˆ๋‹ค.
439
+ </p>
440
+ </div>
441
+
442
+ <div>
443
+ <h4 class="text-lg font-medium mb-4">๋น ๋ฅธ ๋งํฌ</h4>
444
+ <ul class="space-y-2">
445
+ <li><a href="#home" class="text-gray-400 hover:text-white transition duration-300">ํ™ˆ</a></li>
446
+ <li><a href="#services" class="text-gray-400 hover:text-white transition duration-300">์„œ๋น„์Šค</a></li>
447
+ <li><a href="#portfolio" class="text-gray-400 hover:text-white transition duration-300">ํฌํŠธํด๋ฆฌ์˜ค</a></li>
448
+ <li><a href="#about" class="text-gray-400 hover:text-white transition duration-300">์†Œ๊ฐœ</a></li>
449
+ <li><a href="#contact" class="text-gray-400 hover:text-white transition duration-300">์—ฐ๋ฝ์ฒ˜</a></li>
450
+ </ul>
451
+ </div>
452
+
453
+ <div>
454
+ <h4 class="text-lg font-medium mb-4">์„œ๋น„์Šค</h4>
455
+ <ul class="space-y-2">
456
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">์›น ๊ฐœ๋ฐœ</a></li>
457
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">๋ชจ๋ฐ”์ผ ์•ฑ</a></li>
458
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">UI/UX ๋””์ž์ธ</a></li>
459
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">๋””์ง€ํ„ธ ๋งˆ์ผ€ํŒ…</a></li>
460
+ <li><a href="#" class="text-gray-400 hover:text-white transition duration-300">๋ฐ์ดํ„ฐ ๋ถ„์„</a></li>
461
+ </ul>
462
+ </div>
463
+
464
+ <div>
465
+ <h4 class="text-lg font-medium mb-4">๋‰ด์Šค๋ ˆํ„ฐ ๊ตฌ๋…</h4>
466
+ <p class="text-gray-400 mb-4">
467
+ ์ตœ์‹  ์†Œ์‹๊ณผ ํ”„๋กœ๋ชจ์…˜์„ ์ด๋ฉ”์ผ๋กœ ๋ฐ›์•„๋ณด์„ธ์š”.
468
+ </p>
469
+ <div class="flex">
470
+ <input type="email" placeholder="์ด๋ฉ”์ผ ์ฃผ์†Œ" class="px-4 py-2 rounded-l-lg bg-white bg-opacity-10 border border-gray-600 focus:outline-none focus:border-pink-500 w-full">
471
+ <button class="bg-pink-500 hover:bg-pink-600 px-4 py-2 rounded-r-lg transition duration-300">
472
+ <i class="fas fa-paper-plane"></i>
473
+ </button>
474
+ </div>
475
+ </div>
476
+ </div>
477
+
478
+ <div class="border-t border-gray-800 mt-12 pt-8 flex flex-col md:flex-row justify-between items-center">
479
+ <p class="text-gray-500 text-sm mb-4 md:mb-0">
480
+ &copy; 2023 CreativeWeb. All rights reserved.
481
+ </p>
482
+ <div class="flex space-x-6">
483
+ <a href="#" class="text-gray-500 hover:text-white transition duration-300">๊ฐœ์ธ์ •๋ณด ์ฒ˜๋ฆฌ๋ฐฉ์นจ</a>
484
+ <a href="#" class="text-gray-500 hover:text-white transition duration-300">์ด์šฉ์•ฝ๊ด€</a>
485
+ <a href="#" class="text-gray-500 hover:text-white transition duration-300">์ฟ ํ‚ค ์ •์ฑ…</a>
486
+ </div>
487
+ </div>
488
+ </div>
489
+ </footer>
490
+
491
+ <!-- ๋’ค๋กœ ๊ฐ€๊ธฐ ๋ฒ„ํŠผ -->
492
+ <button id="back-to-top" class="fixed bottom-8 right-8 w-12 h-12 bg-pink-500 rounded-full flex items-center justify-center shadow-lg hover:bg-pink-600 transition duration-300 opacity-0 invisible">
493
+ <i class="fas fa-arrow-up text-white"></i>
494
+ </button>
495
+
496
+ <script>
497
+ // ๋ชจ๋ฐ”์ผ ๋ฉ”๋‰ด ํ† ๊ธ€
498
+ const mobileMenuButton = document.getElementById('mobile-menu-button');
499
+ const mobileMenu = document.getElementById('mobile-menu');
500
+
501
+ mobileMenuButton.addEventListener('click', () => {
502
+ mobileMenu.classList.toggle('hidden');
503
+ });
504
+
505
+ // ์Šคํฌ๋กค ์‹œ ๋„ค๋น„๊ฒŒ์ด์…˜ ๋ฐ” ์Šคํƒ€์ผ ๋ณ€๊ฒฝ
506
+ window.addEventListener('scroll', () => {
507
+ const nav = document.querySelector('nav');
508
+ if (window.scrollY > 50) {
509
+ nav.classList.add('shadow-lg');
510
+ nav.classList.remove('glass');
511
+ nav.classList.add('bg-indigo-900');
512
+ nav.classList.add('bg-opacity-90');
513
+ } else {
514
+ nav.classList.remove('shadow-lg');
515
+ nav.classList.add('glass');
516
+ nav.classList.remove('bg-indigo-900');
517
+ nav.classList.remove('bg-opacity-90');
518
+ }
519
+
520
+ // ๋’ค๋กœ ๊ฐ€๊ธฐ ๋ฒ„ํŠผ ํ‘œ์‹œ
521
+ const backToTopButton = document.getElementById('back-to-top');
522
+ if (window.scrollY > 300) {
523
+ backToTopButton.classList.remove('opacity-0', 'invisible');
524
+ backToTopButton.classList.add('opacity-100', 'visible');
525
+ } else {
526
+ backToTopButton.classList.remove('opacity-100', 'visible');
527
+ backToTopButton.classList.add('opacity-0', 'invisible');
528
+ }
529
+ });
530
+
531
+ // ๋’ค๋กœ ๊ฐ€๊ธฐ ๋ฒ„ํŠผ ํด๋ฆญ ์ด๋ฒคํŠธ
532
+ document.getElementById('back-to-top').addEventListener('click', () => {
533
+ window.scrollTo({
534
+ top: 0,
535
+ behavior: 'smooth'
536
+ });
537
+ });
538
+
539
+ // ๋ถ€๋“œ๋Ÿฌ์šด ์Šคํฌ๋กค
540
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
541
+ anchor.addEventListener('click', function (e) {
542
+ e.preventDefault();
543
+
544
+ const targetId = this.getAttribute('href');
545
+ if (targetId === '#') return;
546
+
547
+ const targetElement = document.querySelector(targetId);
548
+ if (targetElement) {
549
+ window.scrollTo({
550
+ top: targetElement.offsetTop - 80,
551
+ behavior: 'smooth'
552
+ });
553
+
554
+ // ๋ชจ๋ฐ”์ผ ๋ฉ”๋‰ด ๋‹ซ๊ธฐ
555
+ mobileMenu.classList.add('hidden');
556
+ }
557
+ });
558
+ });
559
+
560
+ // ํผ ์ œ์ถœ ๋ฐฉ์ง€ (๋ฐ๋ชจ์šฉ)
561
+ document.querySelector('form').addEventListener('submit', (e) => {
562
+ e.preventDefault();
563
+ alert('๋ฐ๋ชจ ๋ฒ„์ „์—์„œ๋Š” ํผ ์ œ์ถœ์ด ๋น„ํ™œ์„ฑํ™”๋˜์–ด ์žˆ์Šต๋‹ˆ๋‹ค. ๊ฐ์‚ฌํ•ฉ๋‹ˆ๋‹ค!');
564
+ });
565
+ </script>
566
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - ๐Ÿงฌ <a href="https://enzostvs-deepsite.hf.space?remix=kjaylee/pipln" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
567
+ </html>