Jordan Ward commited on
Commit
3b1d19b
·
verified ·
1 Parent(s): 1b044f5

create this clothing brand home page in the saem exact way as this website: eclipsearc.com but with this as the video bakcground: https://imgur.com/VwNWg57 instead of the video they have and make it look good on desktop and mobile. and use this as the logo: https://imgur.com/eSK8pvF

Browse files
Files changed (2) hide show
  1. README.md +8 -5
  2. index.html +241 -18
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Lunar Threads Eclipse
3
- emoji: 💻
4
- colorFrom: yellow
5
- colorTo: indigo
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: Lunar Threads Eclipse 👕
3
+ colorFrom: blue
4
+ colorTo: red
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,242 @@
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>Lunar Threads | Eclipse Collection</title>
7
+ <link rel="icon" type="image/x-icon" href="https://i.imgur.com/eSK8pvF.png">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
10
+ <script src="https://unpkg.com/feather-icons"></script>
11
+ <style>
12
+ @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
13
+ html, body {
14
+ font-family: 'Montserrat', sans-serif;
15
+ overflow-x: hidden;
16
+ scroll-behavior: smooth;
17
+ }
18
+ .video-bg {
19
+ position: fixed;
20
+ right: 0;
21
+ bottom: 0;
22
+ min-width: 100%;
23
+ min-height: 100%;
24
+ z-index: -1;
25
+ object-fit: cover;
26
+ opacity: 0.9;
27
+ }
28
+ .nav-transition {
29
+ transition: all 0.3s ease;
30
+ }
31
+ .text-stroke {
32
+ -webkit-text-stroke: 1px white;
33
+ color: transparent;
34
+ }
35
+ .hover-scale {
36
+ transition: transform 0.3s ease;
37
+ }
38
+ .hover-scale:hover {
39
+ transform: scale(1.05);
40
+ }
41
+ </style>
42
+ </head>
43
+ <body class="bg-black text-white">
44
+ <!-- Video Background -->
45
+ <video autoplay muted loop class="video-bg">
46
+ <source src="https://i.imgur.com/VwNWg57.mp4" type="video/mp4">
47
+ </video>
48
+
49
+ <!-- Navigation -->
50
+ <nav class="fixed w-full z-50 bg-black bg-opacity-70 backdrop-blur-sm nav-transition">
51
+ <div class="container mx-auto px-6 py-4 flex justify-between items-center">
52
+ <div class="flex items-center">
53
+ <img src="https://i.imgur.com/eSK8pvF.png" alt="Lunar Threads Logo" class="h-10 md:h-12">
54
+ </div>
55
+ <div class="hidden md:flex space-x-8">
56
+ <a href="#" class="text-white hover:text-gray-300 font-medium">Shop</a>
57
+ <a href="#" class="text-white hover:text-gray-300 font-medium">Collections</a>
58
+ <a href="#" class="text-white hover:text-gray-300 font-medium">About</a>
59
+ <a href="#" class="text-white hover:text-gray-300 font-medium">Contact</a>
60
+ </div>
61
+ <div class="flex items-center space-x-4">
62
+ <button class="text-white hover:text-gray-300">
63
+ <i data-feather="search"></i>
64
+ </button>
65
+ <button class="text-white hover:text-gray-300">
66
+ <i data-feather="shopping-bag"></i>
67
+ </button>
68
+ <button class="md:hidden text-white hover:text-gray-300">
69
+ <i data-feather="menu"></i>
70
+ </button>
71
+ </div>
72
+ </div>
73
+ </nav>
74
+
75
+ <!-- Hero Section -->
76
+ <section class="min-h-screen flex items-center justify-center relative px-6">
77
+ <div class="text-center max-w-4xl mx-auto">
78
+ <h1 class="text-5xl md:text-8xl font-bold mb-6 text-stroke uppercase tracking-tighter">Lunar Threads</h1>
79
+ <p class="text-lg md:text-xl mb-10 max-w-2xl mx-auto">Where cosmic inspiration meets urban fashion. The Eclipse Collection redefines streetwear with celestial elegance.</p>
80
+ <div class="flex flex-col md:flex-row justify-center gap-4">
81
+ <button class="bg-white text-black px-8 py-3 font-medium hover:bg-gray-200 hover-scale">Shop Now</button>
82
+ <button class="border border-white px-8 py-3 font-medium hover:bg-white hover:text-black hover-scale">Explore</button>
83
+ </div>
84
+ </div>
85
+ <div class="absolute bottom-10 left-0 right-0 flex justify-center">
86
+ <a href="#featured" class="animate-bounce">
87
+ <i data-feather="chevron-down" class="text-white"></i>
88
+ </a>
89
+ </div>
90
+ </section>
91
+
92
+ <!-- Featured Collection -->
93
+ <section id="featured" class="py-20 px-6 bg-black bg-opacity-70">
94
+ <div class="container mx-auto">
95
+ <h2 class="text-3xl md:text-5xl font-bold mb-16 text-center">Eclipse Collection</h2>
96
+
97
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-10">
98
+ <!-- Product 1 -->
99
+ <div class="group relative overflow-hidden hover-scale">
100
+ <div class="aspect-square overflow-hidden">
101
+ <img src="http://static.photos/black/640x360/1" alt="Eclipse Hoodie" class="w-full h-full object-cover group-hover:scale-105 transition duration-500">
102
+ </div>
103
+ <div class="mt-4">
104
+ <h3 class="text-xl font-medium">Eclipse Hoodie</h3>
105
+ <p class="text-gray-400">$89.99</p>
106
+ </div>
107
+ </div>
108
+
109
+ <!-- Product 2 -->
110
+ <div class="group relative overflow-hidden hover-scale">
111
+ <div class="aspect-square overflow-hidden">
112
+ <img src="http://static.photos/black/640x360/2" alt="Nebula Tee" class="w-full h-full object-cover group-hover:scale-105 transition duration-500">
113
+ </div>
114
+ <div class="mt-4">
115
+ <h3 class="text-xl font-medium">Nebula Tee</h3>
116
+ <p class="text-gray-400">$49.99</p>
117
+ </div>
118
+ </div>
119
+
120
+ <!-- Product 3 -->
121
+ <div class="group relative overflow-hidden hover-scale">
122
+ <div class="aspect-square overflow-hidden">
123
+ <img src="http://static.photos/black/640x360/3" alt="Celestial Joggers" class="w-full h-full object-cover group-hover:scale-105 transition duration-500">
124
+ </div>
125
+ <div class="mt-4">
126
+ <h3 class="text-xl font-medium">Celestial Joggers</h3>
127
+ <p class="text-gray-400">$69.99</p>
128
+ </div>
129
+ </div>
130
+ </div>
131
+
132
+ <div class="text-center mt-16">
133
+ <button class="border border-white px-8 py-3 font-medium hover:bg-white hover:text-black transition duration-300 hover-scale">
134
+ View All Products
135
+ </button>
136
+ </div>
137
+ </div>
138
+ </section>
139
+
140
+ <!-- About Section -->
141
+ <section class="py-20 px-6 relative">
142
+ <div class="absolute inset-0 bg-black bg-opacity-80"></div>
143
+ <div class="container mx-auto relative z-10">
144
+ <div class="max-w-4xl mx-auto text-center">
145
+ <h2 class="text-3xl md:text-5xl font-bold mb-8">Cosmic Craftsmanship</h2>
146
+ <p class="text-lg md:text-xl mb-10">
147
+ Each piece in our Eclipse Collection is meticulously designed with celestial inspiration,
148
+ crafted from premium sustainable materials, and made to transcend seasons.
149
+ </p>
150
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
151
+ <div>
152
+ <i data-feather="moon" class="h-12 w-12 mx-auto mb-4"></i>
153
+ <h3 class="text-xl font-medium mb-2">Celestial Design</h3>
154
+ <p class="text-gray-300">Inspired by cosmic phenomena and astronomical events</p>
155
+ </div>
156
+ <div>
157
+ <i data-feather="feather" class="h-12 w-12 mx-auto mb-4"></i>
158
+ <h3 class="text-xl font-medium mb-2">Premium Materials</h3>
159
+ <p class="text-gray-300">Ethically sourced fabrics with premium quality</p>
160
+ </div>
161
+ <div>
162
+ <i data-feather="globe" class="h-12 w-12 mx-auto mb-4"></i>
163
+ <h3 class="text-xl font-medium mb-2">Sustainable Practices</h3>
164
+ <p class="text-gray-300">Committed to reducing our cosmic footprint</p>
165
+ </div>
166
+ </div>
167
+ </div>
168
+ </div>
169
+ </section>
170
+
171
+ <!-- Newsletter -->
172
+ <section class="py-20 px-6 bg-black bg-opacity-70">
173
+ <div class="container mx-auto max-w-4xl text-center">
174
+ <h2 class="text-3xl md:text-5xl font-bold mb-6">Join Our Cosmic Journey</h2>
175
+ <p class="text-lg mb-10 max-w-2xl mx-auto">
176
+ Subscribe for exclusive drops, celestial updates, and 10% off your first order.
177
+ </p>
178
+ <div class="flex flex-col md:flex-row gap-4 max-w-xl mx-auto">
179
+ <input type="email" placeholder="Your email address" class="flex-grow px-4 py-3 bg-transparent border border-white text-white placeholder-gray-400 focus:outline-none focus:border-gray-400">
180
+ <button class="bg-white text-black px-6 py-3 font-medium hover:bg-gray-200 hover-scale">Subscribe</button>
181
+ </div>
182
+ </div>
183
+ </section>
184
+
185
+ <!-- Footer -->
186
+ <footer class="bg-black py-12 px-6">
187
+ <div class="container mx-auto">
188
+ <div class="grid grid-cols-1 md:grid-cols-4 gap-10">
189
+ <div>
190
+ <img src="https://i.imgur.com/eSK8pvF.png" alt="Lunar Threads Logo" class="h-12 mb-6">
191
+ <p class="text-gray-400">Where the cosmos meets contemporary fashion.</p>
192
+ </div>
193
+ <div>
194
+ <h3 class="text-lg font-medium mb-4">Shop</h3>
195
+ <ul class="space-y-2">
196
+ <li><a href="#" class="text-gray-400 hover:text-white">All Products</a></li>
197
+ <li><a href="#" class="text-gray-400 hover:text-white">New Arrivals</a></li>
198
+ <li><a href="#" class="text-gray-400 hover:text-white">Best Sellers</a></li>
199
+ <li><a href="#" class="text-gray-400 hover:text-white">Sale</a></li>
200
+ </ul>
201
+ </div>
202
+ <div>
203
+ <h3 class="text-lg font-medium mb-4">Info</h3>
204
+ <ul class="space-y-2">
205
+ <li><a href="#" class="text-gray-400 hover:text-white">About Us</a></li>
206
+ <li><a href="#" class="text-gray-400 hover:text-white">Sustainability</a></li>
207
+ <li><a href="#" class="text-gray-400 hover:text-white">Shipping & Returns</a></li>
208
+ <li><a href="#" class="text-gray-400 hover:text-white">Contact</a></li>
209
+ </ul>
210
+ </div>
211
+ <div>
212
+ <h3 class="text-lg font-medium mb-4">Connect</h3>
213
+ <div class="flex space-x-4 mb-6">
214
+ <a href="#" class="text-gray-400 hover:text-white"><i data-feather="instagram"></i></a>
215
+ <a href="#" class="text-gray-400 hover:text-white"><i data-feather="twitter"></i></a>
216
+ <a href="#" class="text-gray-400 hover:text-white"><i data-feather="facebook"></i></a>
217
+ </div>
218
+ <p class="text-gray-400 text-sm">© 2023 Lunar Threads. All rights reserved.</p>
219
+ </div>
220
+ </div>
221
+ </div>
222
+ </footer>
223
+
224
+ <script>
225
+ feather.replace();
226
+
227
+ // Scroll effect for navigation
228
+ window.addEventListener('scroll', function() {
229
+ const nav = document.querySelector('nav');
230
+ if (window.scrollY > 50) {
231
+ nav.classList.add('shadow-lg');
232
+ nav.classList.add('py-3');
233
+ nav.classList.remove('py-4');
234
+ } else {
235
+ nav.classList.remove('shadow-lg');
236
+ nav.classList.remove('py-3');
237
+ nav.classList.add('py-4');
238
+ }
239
+ });
240
+ </script>
241
+ </body>
242
  </html>