Scorpiotur commited on
Commit
d19f322
·
verified ·
1 Parent(s): d6a3b99

this link is empty please check 404 error

Browse files
Files changed (3) hide show
  1. dropblitz.html +226 -0
  2. index.html +3 -2
  3. privacy.html +1 -0
dropblitz.html ADDED
@@ -0,0 +1,226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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>DropBlitz | Moneyed28</title>
7
+ <meta name="description" content="DropBlitz - AI-powered bulk price updates & SEO optimization for Shopify stores">
8
+ <link rel="stylesheet" href="style.css">
9
+ <style>
10
+ .product-hero {
11
+ min-height: 70vh;
12
+ display: flex;
13
+ align-items: center;
14
+ background: radial-gradient(circle at 70% 30%, rgba(0, 150, 255, 0.1) 0%, transparent 50%);
15
+ position: relative;
16
+ overflow: hidden;
17
+ }
18
+
19
+ .product-hero::before {
20
+ content: '';
21
+ position: absolute;
22
+ top: -50%;
23
+ left: -50%;
24
+ width: 200%;
25
+ height: 200%;
26
+ background: radial-gradient(circle at 30% 70%, rgba(100, 0, 200, 0.05) 0%, transparent 60%);
27
+ z-index: -1;
28
+ }
29
+
30
+ .product-container {
31
+ max-width: 1200px;
32
+ margin: 0 auto;
33
+ padding: 2rem;
34
+ }
35
+
36
+ .product-features {
37
+ display: grid;
38
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
39
+ gap: 2rem;
40
+ margin-top: 3rem;
41
+ }
42
+
43
+ .feature-card {
44
+ background: rgba(255, 255, 255, 0.03);
45
+ border: 1px solid rgba(255, 255, 255, 0.05);
46
+ border-radius: 0.5rem;
47
+ padding: 2rem;
48
+ transition: transform 200ms ease;
49
+ }
50
+
51
+ .feature-card:hover {
52
+ transform: translateY(-5px);
53
+ background: rgba(255, 255, 255, 0.05);
54
+ }
55
+
56
+ .feature-icon {
57
+ font-size: 2rem;
58
+ margin-bottom: 1rem;
59
+ color: #0ff;
60
+ }
61
+
62
+ .screenshot {
63
+ border-radius: 0.5rem;
64
+ border: 1px solid rgba(255, 255, 255, 0.1);
65
+ box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
66
+ max-width: 100%;
67
+ height: auto;
68
+ }
69
+ </style>
70
+ </head>
71
+ <body>
72
+ <!-- Header -->
73
+ <header>
74
+ <div class="container header-container">
75
+ <a href="index.html" class="logo">Moneyed28</a>
76
+ <button class="nav-toggle" id="nav-toggle" aria-label="Toggle navigation">
77
+ <svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
78
+ <line x1="3" y1="12" x2="21" y2="12"></line>
79
+ <line x1="3" y1="6" x2="21" y2="6"></line>
80
+ <line x1="3" y1="18" x2="21" y2="18"></line>
81
+ </svg>
82
+ </button>
83
+ <nav>
84
+ <ul class="nav-menu" id="nav-menu">
85
+ <li><a href="index.html" class="nav-link">Home</a></li>
86
+ <li><a href="index.html#about" class="nav-link">About</a></li>
87
+ <li><a href="index.html#products" class="nav-link">Products</a></li>
88
+ <li><a href="index.html#contact" class="nav-link">Contact</a></li>
89
+ <li><a href="privacy.html" class="nav-link">Privacy</a></li>
90
+ </ul>
91
+ </nav>
92
+ </div>
93
+ </header>
94
+
95
+ <main id="main">
96
+ <!-- Product Hero -->
97
+ <section class="product-hero">
98
+ <div class="container product-container">
99
+ <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;">
100
+ <div>
101
+ <h1 style="font-size: 3rem; line-height: 1.2; margin-bottom: 1.5rem;">DropBlitz</h1>
102
+ <p style="font-size: 1.2rem; margin-bottom: 2rem; color: #adb5bd;">
103
+ AI-powered bulk price updates & SEO optimization for Shopify stores
104
+ </p>
105
+ <div style="display: flex; gap: 1rem; flex-wrap: wrap;">
106
+ <a href="#install" class="btn btn-primary">Install Now</a>
107
+ <a href="#features" class="btn btn-ghost">View Features</a>
108
+ </div>
109
+ </div>
110
+ <div>
111
+ <img src="https://static.photos/technology/640x360/28" alt="DropBlitz Dashboard" class="screenshot">
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </section>
116
+
117
+ <!-- Features -->
118
+ <section id="features" style="background: #121218; padding: 4rem 0;">
119
+ <div class="container product-container">
120
+ <h2 style="text-align: center; margin-bottom: 3rem;">Powerful Features for Shopify Stores</h2>
121
+
122
+ <div class="product-features">
123
+ <div class="feature-card">
124
+ <div class="feature-icon">⚡</div>
125
+ <h3>Bulk Price Updates</h3>
126
+ <p>Update hundreds of product prices in seconds with our intelligent bulk editor. Apply percentage increases, set fixed prices, or use advanced rules.</p>
127
+ </div>
128
+
129
+ <div class="feature-card">
130
+ <div class="feature-icon">🤖</div>
131
+ <h3>AI SEO Generation</h3>
132
+ <p>Automatically generate optimized meta titles and descriptions for your products using our advanced AI technology.</p>
133
+ </div>
134
+
135
+ <div class="feature-card">
136
+ <div class="feature-icon">🔄</div>
137
+ <h3>Smart Scheduling</h3>
138
+ <p>Schedule price changes to go live at specific times, perfect for sales events and promotions.</p>
139
+ </div>
140
+ </div>
141
+ </div>
142
+ </section>
143
+
144
+ <!-- Installation -->
145
+ <section id="install" style="padding: 4rem 0;">
146
+ <div class="container product-container">
147
+ <h2 style="text-align: center; margin-bottom: 3rem;">Get Started in Minutes</h2>
148
+
149
+ <div style="display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;">
150
+ <div>
151
+ <ol style="list-style-type: none; counter-reset: step-counter; padding: 0;">
152
+ <li style="counter-increment: step-counter; margin-bottom: 2rem; position: relative; padding-left: 3rem;">
153
+ <span style="position: absolute; left: 0; top: 0; background: #0ff; color: #0a0a0f; width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold;">1</span>
154
+ <h3 style="margin-bottom: 0.5rem;">Install from Shopify App Store</h3>
155
+ <p>Search for "DropBlitz" in your Shopify admin or click the install button below.</p>
156
+ </li>
157
+ <li style="counter-increment: step-counter; margin-bottom: 2rem; position: relative; padding-left: 3rem;">
158
+ <span style="position: absolute; left: 0; top: 0; background: #0ff; color: #0a0a0f; width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold;">2</span>
159
+ <h3 style="margin-bottom: 0.5rem;">Connect Your Store</h3>
160
+ <p>Grant the necessary permissions to access your product data (we never see customer info).</p>
161
+ </li>
162
+ <li style="counter-increment: step-counter; position: relative; padding-left: 3rem;">
163
+ <span style="position: absolute; left: 0; top: 0; background: #0ff; color: #0a0a0f; width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold;">3</span>
164
+ <h3 style="margin-bottom: 0.5rem;">Start Optimizing</h3>
165
+ <p>Begin updating prices and generating SEO content immediately.</p>
166
+ </li>
167
+ </ol>
168
+
169
+ <div style="margin-top: 3rem; text-align: center;">
170
+ <a href="https://apps.shopify.com/dropblitz" class="btn btn-primary" style="padding: 1rem 2rem; font-size: 1.1rem;">Install DropBlitz</a>
171
+ <p style="margin-top: 1rem; font-size: 0.9rem; color: #adb5bd;">Free 7-day trial • Cancel anytime</p>
172
+ </div>
173
+ </div>
174
+ <div>
175
+ <img src="https://static.photos/technology/640x360/29" alt="DropBlitz Installation" class="screenshot">
176
+ </div>
177
+ </div>
178
+ </div>
179
+ </section>
180
+ </main>
181
+
182
+ <!-- Footer -->
183
+ <footer style="background: #0a0a0f; border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 3rem 0;">
184
+ <div class="container">
185
+ <div style="display: flex; justify-content: space-between; flex-wrap: wrap; gap: 2rem;">
186
+ <div>
187
+ <h3 style="color: #0ff; margin-bottom: 1rem;">Moneyed28</h3>
188
+ <p style="max-width: 300px; color: #adb5bd;">Building AI-powered tools to help eCommerce businesses thrive.</p>
189
+ </div>
190
+ <div>
191
+ <h3 style="color: #0ff; margin-bottom: 1rem;">Quick Links</h3>
192
+ <ul style="list-style: none; padding: 0; margin: 0;">
193
+ <li style="margin-bottom: 0.5rem;"><a href="index.html" style="color: #adb5bd;">Home</a></li>
194
+ <li style="margin-bottom: 0.5rem;"><a href="privacy.html" style="color: #adb5bd;">Privacy Policy</a></li>
195
+ <li><a href="index.html#contact" style="color: #adb5bd;">Contact Us</a></li>
196
+ </ul>
197
+ </div>
198
+ <div>
199
+ <h3 style="color: #0ff; margin-bottom: 1rem;">Contact</h3>
200
+ <ul style="list-style: none; padding: 0; margin: 0;">
201
+ <li style="margin-bottom: 0.5rem;"><a href="mailto:hello@moneyed28.com" style="color: #adb5bd;">hello@moneyed28.com</a></li>
202
+ <li><a href="https://wa.me/13233715222" style="color: #adb5bd;">+1 (323) 371-5222</a></li>
203
+ </ul>
204
+ </div>
205
+ </div>
206
+ <div style="margin-top: 2rem; text-align: center;">
207
+ <p style="color: #adb5bd; font-size: 0.9rem;">© <span id="year">2023</span> Moneyed28 LLC. All rights reserved.</p>
208
+ </div>
209
+ </div>
210
+ </footer>
211
+
212
+ <script>
213
+ // Set current year
214
+ document.getElementById('year').textContent = new Date().getFullYear();
215
+
216
+ // Mobile nav toggle
217
+ const navToggle = document.getElementById('nav-toggle');
218
+ const navMenu = document.getElementById('nav-menu');
219
+
220
+ navToggle.addEventListener('click', () => {
221
+ navMenu.classList.toggle('active');
222
+ navToggle.setAttribute('aria-expanded', navMenu.classList.contains('active'));
223
+ });
224
+ </script>
225
+ </body>
226
+ </html>
index.html CHANGED
@@ -491,6 +491,7 @@
491
  <li><a href="#products" class="nav-link">Products</a></li>
492
  <li><a href="#contact" class="nav-link">Contact</a></li>
493
  <li><a href="privacy.html" class="nav-link">Privacy</a></li>
 
494
  </ul>
495
  </nav>
496
  </div>
@@ -550,8 +551,8 @@
550
  <div class="product-card">
551
  <h3>AI Apps</h3>
552
  <p>Personal AI agents that enhance productivity and daily experiences through adaptive learning and natural interfaces.</p>
553
- <a href="#" class="btn btn-ghost" style="margin-top: 1rem;">View Case Study</a>
554
- </div>
555
  <div class="product-card">
556
  <h3>Games</h3>
557
  <p>Interactive experiences that blend entertainment with social connection, designed for quick sessions and lasting enjoyment.</p>
 
491
  <li><a href="#products" class="nav-link">Products</a></li>
492
  <li><a href="#contact" class="nav-link">Contact</a></li>
493
  <li><a href="privacy.html" class="nav-link">Privacy</a></li>
494
+ <li><a href="dropblitz.html" class="nav-link">DropBlitz</a></li>
495
  </ul>
496
  </nav>
497
  </div>
 
551
  <div class="product-card">
552
  <h3>AI Apps</h3>
553
  <p>Personal AI agents that enhance productivity and daily experiences through adaptive learning and natural interfaces.</p>
554
+ <a href="dropblitz.html" class="btn btn-ghost" style="margin-top: 1rem;">View DropBlitz</a>
555
+ </div>
556
  <div class="product-card">
557
  <h3>Games</h3>
558
  <p>Interactive experiences that blend entertainment with social connection, designed for quick sessions and lasting enjoyment.</p>
privacy.html CHANGED
@@ -126,6 +126,7 @@
126
  <li><a href="index.html#products" class="nav-link">Products</a></li>
127
  <li><a href="index.html#contact" class="nav-link">Contact</a></li>
128
  <li><a href="privacy.html" class="nav-link">Privacy</a></li>
 
129
  </ul>
130
  </nav>
131
  </div>
 
126
  <li><a href="index.html#products" class="nav-link">Products</a></li>
127
  <li><a href="index.html#contact" class="nav-link">Contact</a></li>
128
  <li><a href="privacy.html" class="nav-link">Privacy</a></li>
129
+ <li><a href="dropblitz.html" class="nav-link">DropBlitz</a></li>
130
  </ul>
131
  </nav>
132
  </div>