franchb commited on
Commit
bf8ea6a
Β·
verified Β·
1 Parent(s): fe74938

I need a website for a balloon decoration company in Moscow

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +256 -19
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Skyhigh Balloon Magic
3
- emoji: πŸ“‰
4
- colorFrom: pink
5
- colorTo: green
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: SkyHigh Balloon Magic 🎈
3
+ colorFrom: purple
4
+ colorTo: purple
5
+ emoji: 🐳
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite-v3
10
  ---
11
 
12
+ # Welcome to your new DeepSite project!
13
+ This project was created with [DeepSite](https://deepsite.hf.co).
index.html CHANGED
@@ -1,19 +1,256 @@
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="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>SkyHigh Balloon Magic | Moscow's Premier Balloon Decorators</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://unpkg.com/feather-icons"></script>
10
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.globe.min.js"></script>
12
+ <style>
13
+ @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
14
+ body {
15
+ font-family: 'Poppins', sans-serif;
16
+ overflow-x: hidden;
17
+ }
18
+ .hero-gradient {
19
+ background: linear-gradient(135deg, #FF9A8B 0%, #FF6B95 50%, #FF8E53 100%);
20
+ }
21
+ .balloon-float {
22
+ animation: float 6s ease-in-out infinite;
23
+ }
24
+ @keyframes float {
25
+ 0% { transform: translateY(0px); }
26
+ 50% { transform: translateY(-20px); }
27
+ 100% { transform: translateY(0px); }
28
+ }
29
+ .service-card:hover {
30
+ transform: translateY(-10px);
31
+ box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
32
+ }
33
+ </style>
34
+ </head>
35
+ <body class="bg-white text-gray-800">
36
+ <!-- Navigation -->
37
+ <nav class="fixed w-full z-50 bg-white shadow-md">
38
+ <div class="container mx-auto px-6 py-4">
39
+ <div class="flex items-center justify-between">
40
+ <div class="flex items-center">
41
+ <i data-feather="hexagon" class="text-pink-500 mr-2"></i>
42
+ <span class="text-xl font-bold text-pink-500">SkyHigh</span>
43
+ </div>
44
+ <div class="hidden md:flex space-x-8">
45
+ <a href="#" class="text-pink-600 font-medium">Home</a>
46
+ <a href="#services" class="text-gray-600 hover:text-pink-600 transition">Services</a>
47
+ <a href="#gallery" class="text-gray-600 hover:text-pink-600 transition">Gallery</a>
48
+ <a href="#about" class="text-gray-600 hover:text-pink-600 transition">About</a>
49
+ <a href="#contact" class="text-gray-600 hover:text-pink-600 transition">Contact</a>
50
+ </div>
51
+ <button class="md:hidden focus:outline-none">
52
+ <i data-feather="menu"></i>
53
+ </button>
54
+ </div>
55
+ </div>
56
+ </nav>
57
+
58
+ <!-- Hero Section -->
59
+ <section class="hero-gradient min-h-screen flex items-center pt-20" id="home">
60
+ <div class="container mx-auto px-6 py-20">
61
+ <div class="flex flex-col md:flex-row items-center">
62
+ <div class="md:w-1/2 mb-10 md:mb-0">
63
+ <h1 class="text-4xl md:text-6xl font-bold text-white mb-6">Elevate Your Events with Balloon Magic</h1>
64
+ <p class="text-xl text-white mb-8">Moscow's premier balloon artists creating unforgettable decorations for weddings, corporate events, and celebrations.</p>
65
+ <div class="flex space-x-4">
66
+ <button class="bg-white text-pink-600 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition duration-300">Get a Quote</button>
67
+ <button class="border-2 border-white text-white px-8 py-3 rounded-full font-bold hover:bg-white hover:text-pink-600 transition duration-300">Our Gallery</button>
68
+ </div>
69
+ </div>
70
+ <div class="md:w-1/2 relative">
71
+ <img src="http://static.photos/party/1200x630/1" alt="Balloon decoration" class="rounded-lg shadow-2xl balloon-float">
72
+ <div class="absolute -bottom-10 -left-10 w-32 h-32 bg-yellow-300 rounded-full opacity-20"></div>
73
+ <div class="absolute -top-10 -right-10 w-24 h-24 bg-blue-300 rounded-full opacity-20"></div>
74
+ </div>
75
+ </div>
76
+ </div>
77
+ </section>
78
+
79
+ <!-- Services Section -->
80
+ <section class="py-20 bg-gray-50" id="services">
81
+ <div class="container mx-auto px-6">
82
+ <div class="text-center mb-16">
83
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Magical Services</h2>
84
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">From intimate gatherings to grand celebrations, we transform spaces with our balloon artistry.</p>
85
+ </div>
86
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
87
+ <div class="bg-white p-8 rounded-xl shadow-lg service-card transition duration-300">
88
+ <div class="w-16 h-16 bg-pink-100 rounded-full flex items-center justify-center mb-6">
89
+ <i data-feather="heart" class="text-pink-600 w-8 h-8"></i>
90
+ </div>
91
+ <h3 class="text-xl font-bold mb-3">Wedding Decor</h3>
92
+ <p class="text-gray-600 mb-4">Stunning arches, centerpieces, and photo backdrops to make your special day unforgettable.</p>
93
+ <a href="#" class="text-pink-600 font-medium flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
94
+ </div>
95
+ <div class="bg-white p-8 rounded-xl shadow-lg service-card transition duration-300">
96
+ <div class="w-16 h-16 bg-blue-100 rounded-full flex items-center justify-center mb-6">
97
+ <i data-feather="briefcase" class="text-blue-600 w-8 h-8"></i>
98
+ </div>
99
+ <h3 class="text-xl font-bold mb-3">Corporate Events</h3>
100
+ <p class="text-gray-600 mb-4">Professional balloon installations that impress clients and elevate brand experiences.</p>
101
+ <a href="#" class="text-pink-600 font-medium flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
102
+ </div>
103
+ <div class="bg-white p-8 rounded-xl shadow-lg service-card transition duration-300">
104
+ <div class="w-16 h-16 bg-yellow-100 rounded-full flex items-center justify-center mb-6">
105
+ <i data-feather="gift" class="text-yellow-600 w-8 h-8"></i>
106
+ </div>
107
+ <h3 class="text-xl font-bold mb-3">Private Celebrations</h3>
108
+ <p class="text-gray-600 mb-4">Birthdays, anniversaries, and special occasions made magical with our creative designs.</p>
109
+ <a href="#" class="text-pink-600 font-medium flex items-center">Learn more <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i></a>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </section>
114
+
115
+ <!-- Gallery Section -->
116
+ <section class="py-20" id="gallery">
117
+ <div class="container mx-auto px-6">
118
+ <div class="text-center mb-16">
119
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">Our Balloon Masterpieces</h2>
120
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Browse through our portfolio of stunning balloon installations across Moscow.</p>
121
+ </div>
122
+ <div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-6">
123
+ <div class="relative group overflow-hidden rounded-xl">
124
+ <img src="http://static.photos/party/640x360/1" alt="Wedding balloon arch" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
125
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
126
+ <div>
127
+ <h3 class="text-white font-bold text-xl">Wedding Arch</h3>
128
+ <p class="text-white">Grand Ballroom, Moscow</p>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ <div class="relative group overflow-hidden rounded-xl">
133
+ <img src="http://static.photos/party/640x360/2" alt="Corporate balloon installation" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
134
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
135
+ <div>
136
+ <h3 class="text-white font-bold text-xl">Corporate Centerpiece</h3>
137
+ <p class="text-white">Tech Conference, Moscow</p>
138
+ </div>
139
+ </div>
140
+ </div>
141
+ <div class="relative group overflow-hidden rounded-xl">
142
+ <img src="http://static.photos/party/640x360/3" alt="Birthday balloon decoration" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
143
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
144
+ <div>
145
+ <h3 class="text-white font-bold text-xl">Birthday Extravaganza</h3>
146
+ <p class="text-white">Private Residence, Moscow</p>
147
+ </div>
148
+ </div>
149
+ </div>
150
+ <div class="relative group overflow-hidden rounded-xl">
151
+ <img src="http://static.photos/party/640x360/4" alt="Balloon ceiling installation" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
152
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
153
+ <div>
154
+ <h3 class="text-white font-bold text-xl">Ceiling Installation</h3>
155
+ <p class="text-white">Product Launch, Moscow</p>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ <div class="relative group overflow-hidden rounded-xl">
160
+ <img src="http://static.photos/party/640x360/5" alt="Balloon garland" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
161
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
162
+ <div>
163
+ <h3 class="text-white font-bold text-xl">Floral Garland</h3>
164
+ <p class="text-white">Spring Festival, Moscow</p>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ <div class="relative group overflow-hidden rounded-xl">
169
+ <img src="http://static.photos/party/640x360/6" alt="Balloon photo backdrop" class="w-full h-80 object-cover transition duration-500 group-hover:scale-110">
170
+ <div class="absolute inset-0 bg-gradient-to-t from-black/70 to-transparent flex items-end p-6 opacity-0 group-hover:opacity-100 transition duration-300">
171
+ <div>
172
+ <h3 class="text-white font-bold text-xl">Photo Backdrop</h3>
173
+ <p class="text-white">Wedding Reception, Moscow</p>
174
+ </div>
175
+ </div>
176
+ </div>
177
+ </div>
178
+ <div class="text-center mt-12">
179
+ <button class="bg-pink-600 text-white px-8 py-3 rounded-full font-bold hover:bg-pink-700 transition duration-300">View Full Gallery</button>
180
+ </div>
181
+ </div>
182
+ </section>
183
+
184
+ <!-- About Section -->
185
+ <section class="py-20 bg-gray-50" id="about">
186
+ <div class="container mx-auto px-6">
187
+ <div class="flex flex-col md:flex-row items-center">
188
+ <div class="md:w-1/2 mb-10 md:mb-0 md:pr-10">
189
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-6">Our Story</h2>
190
+ <p class="text-gray-600 mb-6">Founded in 2015, SkyHigh Balloon Magic began with a simple passion for transforming ordinary spaces into extraordinary experiences through the art of balloon decoration.</p>
191
+ <p class="text-gray-600 mb-8">What started as a small team of creative enthusiasts has grown into Moscow's most sought-after balloon artistry company, with over 500 successful events under our belt.</p>
192
+ <div class="flex space-x-4">
193
+ <div class="text-center">
194
+ <div class="text-4xl font-bold text-pink-600">500+</div>
195
+ <div class="text-gray-600">Events</div>
196
+ </div>
197
+ <div class="text-center">
198
+ <div class="text-4xl font-bold text-pink-600">98%</div>
199
+ <div class="text-gray-600">Happy Clients</div>
200
+ </div>
201
+ <div class="text-center">
202
+ <div class="text-4xl font-bold text-pink-600">50+</div>
203
+ <div class="text-gray-600">Designs</div>
204
+ </div>
205
+ </div>
206
+ </div>
207
+ <div class="md:w-1/2">
208
+ <div class="grid grid-cols-2 gap-4">
209
+ <div class="relative group overflow-hidden rounded-xl h-64">
210
+ <img src="http://static.photos/people/640x360/1" alt="Our team" class="w-full h-full object-cover transition duration-500 group-hover:scale-110">
211
+ <div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
212
+ <span class="text-white font-bold">Our Creative Team</span>
213
+ </div>
214
+ </div>
215
+ <div class="relative group overflow-hidden rounded-xl h-64">
216
+ <img src="http://static.photos/office/640x360/1" alt="Our studio" class="w-full h-full object-cover transition duration-500 group-hover:scale-110">
217
+ <div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
218
+ <span class="text-white font-bold">Our Moscow Studio</span>
219
+ </div>
220
+ </div>
221
+ <div class="relative group overflow-hidden rounded-xl h-64">
222
+ <img src="http://static.photos/workspace/640x360/1" alt="Materials" class="w-full h-full object-cover transition duration-500 group-hover:scale-110">
223
+ <div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
224
+ <span class="text-white font-bold">Premium Materials</span>
225
+ </div>
226
+ </div>
227
+ <div class="relative group overflow-hidden rounded-xl h-64">
228
+ <img src="http://static.photos/event/640x360/1" alt="Award" class="w-full h-full object-cover transition duration-500 group-hover:scale-110">
229
+ <div class="absolute inset-0 bg-black/30 flex items-center justify-center opacity-0 group-hover:opacity-100 transition duration-300">
230
+ <span class="text-white font-bold">Award Winning</span>
231
+ </div>
232
+ </div>
233
+ </div>
234
+ </div>
235
+ </div>
236
+ </div>
237
+ </section>
238
+
239
+ <!-- Testimonials Section -->
240
+ <section class="py-20">
241
+ <div class="container mx-auto px-6">
242
+ <div class="text-center mb-16">
243
+ <h2 class="text-3xl md:text-4xl font-bold text-gray-800 mb-4">What Our Clients Say</h2>
244
+ <p class="text-xl text-gray-600 max-w-2xl mx-auto">Don't just take our word for it - hear from our happy clients!</p>
245
+ </div>
246
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
247
+ <div class="bg-white p-8 rounded-xl shadow-lg">
248
+ <div class="flex items-center mb-4">
249
+ <div class="text-yellow-400 flex">
250
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
251
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
252
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
253
+ <i data-feather="star" class="w-5 h-5 fill-current"></i>
254
+ <i data-feather="star" class="
255
+ </body>
256
+ </html>