ghost325 commited on
Commit
57d33d9
·
verified ·
1 Parent(s): bea7b3b

Add 2 files

Browse files
Files changed (1) hide show
  1. index.html +38 -671
index.html CHANGED
@@ -1,674 +1,41 @@
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>PetroConnect - Emerging Fuel Distribution Partner</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
- .gradient-bg {
11
- background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
12
- }
13
- .slide {
14
- display: none;
15
- animation: fadeIn 0.5s ease-in-out;
16
- }
17
- .slide.active {
18
- display: block;
19
- }
20
- @keyframes fadeIn {
21
- from { opacity: 0; transform: translateY(20px); }
22
- to { opacity: 1; transform: translateY(0); }
23
- }
24
- .progress-bar {
25
- height: 6px;
26
- transition: width 0.3s ease;
27
- }
28
- .feature-card:hover {
29
- transform: translateY(-5px);
30
- box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
31
- }
32
- .partner-logo {
33
- filter: grayscale(100%) brightness(0) invert(1);
34
- opacity: 0.7;
35
- transition: all 0.3s ease;
36
- }
37
- .partner-logo:hover {
38
- filter: none;
39
- opacity: 1;
40
- }
41
- .hass-blue {
42
- background-color: #0056b3;
43
- }
44
- .hass-yellow {
45
- background-color: #ffd700;
46
- }
47
- .tagline {
48
- font-family: 'Arial', sans-serif;
49
- letter-spacing: 1px;
50
- }
51
- .md-signature {
52
- font-family: 'Georgia', serif;
53
- font-style: italic;
54
- }
55
  </style>
56
- </head>
57
- <body class="font-sans bg-gray-50">
58
- <!-- Navigation -->
59
- <nav class="gradient-bg text-white shadow-lg">
60
- <div class="container mx-auto px-6 py-4">
61
- <div class="flex items-center justify-between">
62
- <div class="flex items-center">
63
- <i class="fas fa-gas-pump text-2xl mr-3"></i>
64
- <span class="font-bold text-xl">PetroConnect</span>
65
- </div>
66
- <div class="hidden md:flex space-x-8">
67
- <a href="#" class="nav-link" data-slide="0">Home</a>
68
- <a href="#" class="nav-link" data-slide="1">Plan</a>
69
- <a href="#" class="nav-link" data-slide="2">Market</a>
70
- <a href="#" class="nav-link" data-slide="3">Operations</a>
71
- <a href="#" class="nav-link" data-slide="4">Financials</a>
72
- </div>
73
- <button class="md:hidden focus:outline-none" id="menu-toggle">
74
- <i class="fas fa-bars text-2xl"></i>
75
- </button>
76
- </div>
77
- </div>
78
- <!-- Mobile menu -->
79
- <div class="md:hidden hidden px-6 py-2 bg-blue-900" id="mobile-menu">
80
- <a href="#" class="block py-2 nav-link" data-slide="0">Home</a>
81
- <a href="#" class="block py-2 nav-link" data-slide="1">Business Plan</a>
82
- <a href="#" class="block py-2 nav-link" data-slide="2">Market Analysis</a>
83
- <a href="#" class="block py-2 nav-link" data-slide="3">Operations</a>
84
- <a href="#" class="block py-2 nav-link" data-slide="4">Financial Projections</a>
85
- </div>
86
- </nav>
87
-
88
- <!-- Progress bar -->
89
- <div class="h-1.5 bg-gray-200">
90
- <div class="progress-bar bg-blue-600 w-0" id="progress-bar"></div>
91
- </div>
92
-
93
- <!-- Slides container -->
94
- <div class="relative overflow-hidden">
95
- <!-- Slide 0: Cover -->
96
- <div class="slide active min-h-screen gradient-bg text-white">
97
- <div class="container mx-auto px-6 py-20 md:py-32 flex flex-col items-center justify-center text-center">
98
- <h1 class="text-4xl md:text-5xl font-bold mb-6">Fueling Connections.<br>Powering Progress.</h1>
99
- <p class="text-xl md:text-2xl mb-10 max-w-3xl">Emerging petroleum distribution partner with strategic alliance to Hass Petroleum</p>
100
-
101
- <!-- Partner logos -->
102
- <div class="my-10">
103
- <h3 class="text-lg font-medium mb-6 text-blue-200">Exclusive Partnership With:</h3>
104
- <div class="flex justify-center items-center">
105
- <div class="hass-blue p-4 rounded-lg flex items-center">
106
- <img src="https://hasspetroleum.com/wp-content/uploads/2021/11/Hass-Logo-White.png" class="h-14 md:h-20" alt="Hass Petroleum">
107
- </div>
108
- </div>
109
- <p class="mt-6 text-blue-200">Official distribution partner since 2023</p>
110
- </div>
111
-
112
- <div class="flex flex-wrap justify-center gap-4">
113
- <button class="bg-white text-blue-800 px-8 py-3 rounded-full font-bold hover:bg-gray-100 transition duration-300 shadow-lg">
114
- Explore Partnership <i class="fas fa-arrow-right ml-2"></i>
115
- </button>
116
- <button class="border-2 border-white text-white px-8 py-3 rounded-full font-bold hover:bg-blue-700 transition duration-300">
117
- Download Profile <i class="fas fa-download ml-2"></i>
118
- </button>
119
- </div>
120
-
121
- <!-- MD Signature -->
122
- <div class="mt-16 border-t border-blue-400 pt-6 w-full max-w-md">
123
- <div class="flex flex-col items-center">
124
- <img src="https://randomuser.me/api/portraits/men/42.jpg" class="w-16 h-16 rounded-full mb-3 border-2 border-white" alt="Mohamed Amin Jabane">
125
- <p class="font-medium">Mohamed Amin Jabane</p>
126
- <p class="text-blue-200 text-sm">Managing Director</p>
127
- <div class="mt-2 flex items-center">
128
- <i class="fas fa-phone-alt mr-2 text-blue-300"></i>
129
- <span>0716 331 902</span>
130
- </div>
131
- </div>
132
- </div>
133
-
134
- <div class="mt-8 animate-bounce">
135
- <i class="fas fa-chevron-down text-2xl"></i>
136
- </div>
137
- </div>
138
- </div>
139
-
140
- <!-- Slide 1: Business Plan Overview -->
141
- <div class="slide min-h-screen py-20">
142
- <div class="container mx-auto px-6">
143
- <h2 class="text-3xl md:text-4xl font-bold text-center mb-16 text-blue-900">Strategic Growth Plan</h2>
144
-
145
- <div class="grid md:grid-cols-2 gap-10 mb-16">
146
- <div>
147
- <h3 class="text-2xl font-semibold mb-4 text-blue-800">Executive Summary</h3>
148
- <p class="text-gray-700 mb-6">PetroConnect is an ambitious fuel distribution startup operating under the Hass Petroleum brand, specializing in efficient last-mile delivery to independent retailers and commercial fleets in our target regions.</p>
149
-
150
- <div class="bg-blue-50 p-6 rounded-lg border-l-4 border-blue-500 mb-6">
151
- <h4 class="font-bold text-blue-800 mb-2">Strategic Positioning</h4>
152
- <ul class="list-disc pl-5 space-y-2 text-gray-700">
153
- <li>Exclusive regional distributor for Hass Petroleum products</li>
154
- <li>Focus on underserved retail markets with growth potential</li>
155
- <li>Asset-light model with phased fleet expansion</li>
156
- <li>Technology-driven operations from day one</li>
157
- </ul>
158
- </div>
159
- </div>
160
-
161
- <div class="bg-white p-8 rounded-xl shadow-lg border border-gray-200">
162
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Growth Roadmap</h3>
163
- <div class="space-y-6">
164
- <div>
165
- <div class="flex items-center mb-2">
166
- <div class="w-8 h-8 rounded-full hass-blue flex items-center justify-center mr-3 text-white">
167
- <i class="fas fa-map-marked-alt"></i>
168
- </div>
169
- <h4 class="font-semibold text-gray-800">Phase 1 (2023-24)</h4>
170
- </div>
171
- <p class="text-gray-600 pl-11">Establish operations in 3 key districts with 5 trucks, targeting 50 retail stations</p>
172
- </div>
173
-
174
- <div>
175
- <div class="flex items-center mb-2">
176
- <div class="w-8 h-8 rounded-full hass-blue flex items-center justify-center mr-3 text-white">
177
- <i class="fas fa-expand"></i>
178
- </div>
179
- <h4 class="font-semibold text-gray-800">Phase 2 (2024-25)</h4>
180
- </div>
181
- <p class="text-gray-600 pl-11">Expand to 2 additional regions, growing fleet to 12 trucks serving 120+ stations</p>
182
- </div>
183
-
184
- <div>
185
- <div class="flex items-center mb-2">
186
- <div class="w-8 h-8 rounded-full hass-blue flex items-center justify-center mr-3 text-white">
187
- <i class="fas fa-rocket"></i>
188
- </div>
189
- <h4 class="font-semibold text-gray-800">Phase 3 (2025+)</h4>
190
- </div>
191
- <p class="text-gray-600 pl-11">Evaluate additional brand partnerships and geographic expansion opportunities</p>
192
- </div>
193
- </div>
194
- </div>
195
- </div>
196
-
197
- <div class="bg-hass-blue text-white p-8 rounded-xl">
198
- <h3 class="text-2xl font-semibold mb-4">2024 Key Targets</h3>
199
- <div class="grid md:grid-cols-3 gap-6">
200
- <div class="bg-blue-800 p-4 rounded-lg">
201
- <div class="text-4xl font-bold mb-2">50+</div>
202
- <p>Retail stations under contract</p>
203
- </div>
204
- <div class="bg-blue-800 p-4 rounded-lg">
205
- <div class="text-4xl font-bold mb-2">5M+</div>
206
- <p>Liters monthly distribution volume</p>
207
- </div>
208
- <div class="bg-blue-800 p-4 rounded-lg">
209
- <div class="text-4xl font-bold mb-2">95%</div>
210
- <p>On-time delivery target</p>
211
- </div>
212
- </div>
213
- </div>
214
- </div>
215
- </div>
216
-
217
- <!-- Slide 2: Market Analysis -->
218
- <div class="slide min-h-screen py-20 bg-gray-100">
219
- <div class="container mx-auto px-6">
220
- <h2 class="text-3xl md:text-4xl font-bold text-center mb-16 text-blue-900">Retail Market Opportunity</h2>
221
-
222
- <div class="grid md:grid-cols-2 gap-10 mb-12">
223
- <div class="bg-white p-8 rounded-xl shadow">
224
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Market Insights</h3>
225
- <p class="text-gray-700 mb-4">The East African fuel retail market is growing at 6.2% CAGR (2023-28), with independent retailers representing 42% of outlets but receiving less reliable supply than branded stations.</p>
226
- <ul class="list-disc pl-5 space-y-2 text-gray-700 mb-6">
227
- <li>Average station throughput: 120,000 liters/month</li>
228
- <li>Delivery lead times often exceed 48 hours for independents</li>
229
- <li>45% of retailers would switch for better reliability</li>
230
- <li>Hass Petroleum has 12% market share in our target regions</li>
231
- </ul>
232
- <div class="bg-yellow-50 border-l-4 border-yellow-400 p-4">
233
- <p class="text-yellow-800 font-medium">Opportunity: Capture 15% of independent retailer market in our operational areas within 18 months.</p>
234
- </div>
235
- </div>
236
-
237
- <div>
238
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Target Retail Segments</h3>
239
- <div class="space-y-6">
240
- <div class="flex items-start">
241
- <div class="hass-blue p-3 rounded-full mr-4 text-white">
242
- <i class="fas fa-store"></i>
243
- </div>
244
- <div>
245
- <h4 class="font-semibold text-gray-800">Independent Fuel Stations</h4>
246
- <p class="text-gray-600">2-4 pump locations in urban and peri-urban areas</p>
247
- </div>
248
- </div>
249
-
250
- <div class="flex items-start">
251
- <div class="hass-blue p-3 rounded-full mr-4 text-white">
252
- <i class="fas fa-industry"></i>
253
- </div>
254
- <div>
255
- <h4 class="font-semibold text-gray-800">Commercial Consumers</h4>
256
- <p class="text-gray-600">Construction companies, transport fleets with 5,000+ liter weekly needs</p>
257
- </div>
258
- </div>
259
-
260
- <div class="flex items-start">
261
- <div class="hass-blue p-3 rounded-full mr-4 text-white">
262
- <i class="fas fa-hotel"></i>
263
- </div>
264
- <div>
265
- <h4 class="font-semibold text-gray-800">Hospitality Sector</h4>
266
- <p class="text-gray-600">Hotels and resorts with backup generator fuel requirements</p>
267
- </div>
268
- </div>
269
- </div>
270
-
271
- <div class="mt-8 bg-white p-6 rounded-lg shadow">
272
- <h4 class="font-bold text-blue-800 mb-3">Competitive Advantage</h4>
273
- <div class="flex items-center mb-3">
274
- <div class="w-3 h-3 rounded-full hass-blue mr-2"></div>
275
- <span class="text-gray-700">24-hour delivery guarantee for priority customers</span>
276
- </div>
277
- <div class="flex items-center mb-3">
278
- <div class="w-3 h-3 rounded-full hass-blue mr-2"></div>
279
- <span class="text-gray-700">Hass brand credibility with local market knowledge</span>
280
- </div>
281
- <div class="flex items-center">
282
- <div class="w-3 h-3 rounded-full hass-blue mr-2"></div>
283
- <span class="text-gray-700">Mobile app for real-time order tracking</span>
284
- </div>
285
- </div>
286
- </div>
287
- </div>
288
-
289
- <div class="bg-white p-8 rounded-xl shadow-lg">
290
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Customer Acquisition Strategy</h3>
291
- <div class="grid md:grid-cols-3 gap-6">
292
- <div class="feature-card p-6 border border-gray-200 rounded-lg transition duration-300">
293
- <div class="hass-blue text-white text-2xl w-12 h-12 flex items-center justify-center rounded-full mb-4 mx-auto">
294
- <i class="fas fa-percentage"></i>
295
- </div>
296
- <h4 class="font-bold text-lg mb-2 text-center">Volume Incentives</h4>
297
- <p class="text-gray-600 text-center">Tiered pricing with 2-5% discounts for stations exceeding 100,000 liters/month</p>
298
- </div>
299
-
300
- <div class="feature-card p-6 border border-gray-200 rounded-lg transition duration-300">
301
- <div class="hass-blue text-white text-2xl w-12 h-12 flex items-center justify-center rounded-full mb-4 mx-auto">
302
- <i class="fas fa-clock"></i>
303
- </div>
304
- <h4 class="font-bold text-lg mb-2 text-center">Reliability Promise</h4>
305
- <p class="text-gray-600 text-center">Delivery time SLA with rebates for late deliveries</p>
306
- </div>
307
-
308
- <div class="feature-card p-6 border border-gray-200 rounded-lg transition duration-300">
309
- <div class="hass-blue text-white text-2xl w-12 h-12 flex items-center justify-center rounded-full mb-4 mx-auto">
310
- <i class="fas fa-mobile-alt"></i>
311
- </div>
312
- <h4 class="font-bold text-lg mb-2 text-center">Digital Platform</h4>
313
- <p class="text-gray-600 text-center">Inventory management app with predictive ordering</p>
314
- </div>
315
- </div>
316
- </div>
317
- </div>
318
- </div>
319
-
320
- <!-- Slide 3: Operations Plan -->
321
- <div class="slide min-h-screen py-20">
322
- <div class="container mx-auto px-6">
323
- <h2 class="text-3xl md:text-4xl font-bold text-center mb-16 text-blue-900">Lean Operations</h2>
324
-
325
- <div class="grid md:grid-cols-2 gap-10 mb-12">
326
- <div>
327
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Strategic Sourcing</h3>
328
-
329
- <div class="mb-8">
330
- <h4 class="font-bold text-gray-800 mb-3 flex items-center">
331
- <span class="w-8 h-8 hass-blue rounded-full flex items-center justify-center mr-3 text-white">1</span>
332
- Hass Terminal Access
333
- </h4>
334
- <p class="text-gray-700 pl-11">Priority loading at Hass Petroleum's Nairobi terminal with 72-hour inventory visibility. Night loading privileges to maximize daily delivery cycles.</p>
335
- </div>
336
-
337
- <div class="mb-8">
338
- <h4 class="font-bold text-gray-800 mb-3 flex items-center">
339
- <span class="w-8 h-8 hass-blue rounded-full flex items-center justify-center mr-3 text-white">2</span>
340
- Quality Assurance
341
- </h4>
342
- <p class="text-gray-700 pl-11">Automated tank monitoring during transit. Digital certificates of quality with each delivery. Monthly joint quality audits with Hass technicians.</p>
343
- </div>
344
-
345
- <div class="mb-8">
346
- <h4 class="font-bold text-gray-800 mb-3 flex items-center">
347
- <span class="w-8 h-8 hass-blue rounded-full flex items-center justify-center mr-3 text-white">3</span>
348
- Fleet Strategy
349
- </h4>
350
- <p class="text-gray-700 pl-11">Start with 3 owned trucks (24,000L capacity each) and 2 contracted vehicles. Phase in 2 additional trucks by Q3 2024 based on route density.</p>
351
- </div>
352
- </div>
353
-
354
- <div class="bg-blue-50 p-8 rounded-xl">
355
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Technology Stack</h3>
356
-
357
- <div class="flex items-start mb-6">
358
- <div class="hass-blue p-3 rounded-full mr-4 text-white">
359
- <i class="fas fa-route"></i>
360
- </div>
361
- <div>
362
- <h4 class="font-semibold text-gray-800">Dynamic Routing</h4>
363
- <p class="text-gray-600">AI-powered routing software that reduces empty miles by 15-20% versus manual planning</p>
364
- </div>
365
- </div>
366
-
367
- <div class="flex items-start mb-6">
368
- <div class="hass-blue p-3 rounded-full mr-4 text-white">
369
- <i class="fas fa-tablet-alt"></i>
370
- </div>
371
- <div>
372
- <h4 class="font-semibold text-gray-800">Driver Tablets</h4>
373
- <p class="text-gray-600">4G-enabled devices with real-time navigation, electronic POD, and compliance checklists</p>
374
- </div>
375
- </div>
376
-
377
- <div class="flex items-start">
378
- <div class="hass-blue p-3 rounded-full mr-4 text-white">
379
- <i class="fas fa-chart-bar"></i>
380
- </div>
381
- <div>
382
- <h4 class="font-semibold text-gray-800">Retailer Portal</h4>
383
- <p class="text-gray-600">Web-based dashboard showing inventory levels, delivery history, and account analytics</p>
384
- </div>
385
- </div>
386
- </div>
387
- </div>
388
-
389
- <div class="bg-white p-8 rounded-xl shadow-lg">
390
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Key Performance Metrics</h3>
391
- <div class="grid md:grid-cols-3 gap-6">
392
- <div class="p-5 border border-gray-200 rounded-lg text-center">
393
- <div class="hass-blue text-white text-3xl w-16 h-16 flex items-center justify-center rounded-full mb-3 mx-auto">
394
- <i class="fas fa-truck"></i>
395
- </div>
396
- <h4 class="font-bold mb-2">Truck Utilization</h4>
397
- <p class="text-gray-600 text-sm">Target: 85%+ (5 deliveries/truck/day)</p>
398
- </div>
399
-
400
- <div class="p-5 border border-gray-200 rounded-lg text-center">
401
- <div class="hass-blue text-white text-3xl w-16 h-16 flex items-center justify-center rounded-full mb-3 mx-auto">
402
- <i class="fas fa-stopwatch"></i>
403
- </div>
404
- <h4 class="font-bold mb-2">Delivery Time</h4>
405
- <p class="text-gray-600 text-sm">Target: <24 hours for 90% of orders</p>
406
- </div>
407
-
408
- <div class="p-5 border border-gray-200 rounded-lg text-center">
409
- <div class="hass-blue text-white text-3xl w-16 h-16 flex items-center justify-center rounded-full mb-3 mx-auto">
410
- <i class="fas fa-sync-alt"></i>
411
- </div>
412
- <h4 class="font-bold mb-2">Retention Rate</h4>
413
- <p class="text-gray-600 text-sm">Target: 80%+ customer retention quarterly</p>
414
- </div>
415
- </div>
416
- </div>
417
- </div>
418
- </div>
419
-
420
- <!-- Slide 4: Financial Projections -->
421
- <div class="slide min-h-screen py-20 bg-gray-100">
422
- <div class="container mx-auto px-6">
423
- <h2 class="text-3xl md:text-4xl font-bold text-center mb-16 text-blue-900">Financial Roadmap</h2>
424
-
425
- <div class="grid md:grid-cols-2 gap-10 mb-12">
426
- <div>
427
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Startup Requirements</h3>
428
-
429
- <div class="bg-white p-6 rounded-lg shadow mb-6">
430
- <h4 class="font-bold text-gray-800 mb-4">Initial Capital (KES)</h4>
431
- <div class="space-y-3">
432
- <div class="flex justify-between border-b pb-2">
433
- <span>2 Fuel Trucks (24,000L)</span>
434
- <span class="font-semibold">18,000,000</span>
435
- </div>
436
- <div class="flex justify-between border-b pb-2">
437
- <span>Operating Capital</span>
438
- <span class="font-semibold">5,000,000</span>
439
- </div>
440
- <div class="flex justify-between border-b pb-2">
441
- <span>Technology Systems</span>
442
- <span class="font-semibold">1,200,000</span>
443
- </div>
444
- <div class="flex justify-between border-b pb-2">
445
- <span>Working Capital</span>
446
- <span class="font-semibold">3,500,000</span>
447
- </div>
448
- <div class="flex justify-between pt-2 font-bold text-lg">
449
- <span>Total</span>
450
- <span>27,700,000</span>
451
- </div>
452
- </div>
453
- </div>
454
-
455
- <div class="bg-blue-50 p-6 rounded-lg border-l-4 border-blue-500">
456
- <h4 class="font-bold text-blue-800 mb-3">Funding Strategy</h4>
457
- <p class="text-gray-700 mb-2">60% Founder equity (17M KES)</p>
458
- <p class="text-gray-700 mb-2">30% Asset financing (8M KES)</p>
459
- <p class="text-gray-700">10% Hass Petroleum vendor credit (2.7M KES)</p>
460
- </div>
461
- </div>
462
-
463
- <div>
464
- <h3 class="text-2xl font-semibold mb-6 text-blue-800">Revenue Model</h3>
465
-
466
- <div class="bg-white p-6 rounded-lg shadow mb-6">
467
- <h4 class="font-bold text-gray-800 mb-4">Margin Structure</h4>
468
- <p class="text-gray-700 mb-4">Hass Petroleum distributor margin of 3.50 KES/liter, with potential quarterly volume bonuses up to 0.75 KES/liter.</p>
469
-
470
- <div class="flex items-center justify-between mb-2">
471
- <span class="text-sm text-gray-600">Base Distribution Fee</span>
472
- <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">3.50 KES/liter</span>
473
- </div>
474
- <div class="flex items-center justify-between mb-2">
475
- <span class="text-sm text-gray-600">Volume Bonus (>100k liters/month)</span>
476
- <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">+0.50 KES/liter</span>
477
- </div>
478
- <div class="flex items-center justify-between">
479
- <span class="text-sm text-gray-600">On-Time Performance Bonus</span>
480
- <span class="bg-blue-100 text-blue-800 px-3 py-1 rounded-full text-sm font-medium">+0.25 KES/liter</span>
481
- </div>
482
- </div>
483
-
484
- <div class="bg-white p-6 rounded-lg shadow">
485
- <h4 class="font-bold text-gray-800 mb-4">12-Month Projections</h4>
486
- <div class="grid grid-cols-3 gap-2 text-center mb-3 font-medium text-sm">
487
- <div class="bg-blue-100 py-2 rounded">Metric</div>
488
- <div class="bg-blue-100 py-2 rounded">Month 6</div>
489
- <div class="bg-blue-100 py-2 rounded">Month 12</div>
490
-
491
- <div class="py-2 border-b">Monthly Volume</div>
492
- <div class="py-2 border-b">1.8M liters</div>
493
- <div class="py-2 border-b">3.2M liters</div>
494
-
495
- <div class="py-2 border-b">Revenue</div>
496
- <div class="py-2 border-b">6.3M KES</div>
497
- <div class="py-2 border-b">11.2M KES</div>
498
-
499
- <div class="py-2">Gross Profit</div>
500
- <div class="py-2">2.2M KES</div>
501
- <div class="py-2">4.0M KES</div>
502
- </div>
503
- <p class="text-gray-600 text-sm">Assumes 35 retail stations by Month 6, growing to 50 by Month 12</p>
504
- </div>
505
- </div>
506
- </div>
507
-
508
- <div class="bg-hass-blue text-white p-8 rounded-xl">
509
- <h3 class="text-2xl font-semibold mb-6">Milestone Metrics</h3>
510
- <div class="grid md:grid-cols-4 gap-4">
511
- <div class="bg-blue-800 p-4 rounded-lg text-center">
512
- <div class="text-3xl font-bold mb-2">Q3 2024</div>
513
- <p class="text-sm">Break-even operations</p>
514
- </div>
515
- <div class="bg-blue-800 p-4 rounded-lg text-center">
516
- <div class="text-3xl font-bold mb-2">18%</div>
517
- <p class="text-sm">Target gross margin</p>
518
- </div>
519
- <div class="bg-blue-800 p-4 rounded-lg text-center">
520
- <div class="text-3xl font-bold mb-2">2.5x</div>
521
- <p class="text-sm">ROI by Year 2</p>
522
- </div>
523
- <div class="bg-blue-800 p-4 rounded-lg text-center">
524
- <div class="text-3xl font-bold mb-2">15%</div>
525
- <p class="text-sm">Hass market share growth in target areas</p>
526
- </div>
527
- </div>
528
- </div>
529
- </div>
530
- </div>
531
- </div>
532
-
533
- <!-- Navigation controls -->
534
- <div class="fixed bottom-6 right-6 flex space-x-3">
535
- <button id="prev-btn" class="hass-blue text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center hover:bg-blue-800 transition">
536
- <i class="fas fa-chevron-left"></i>
537
- </button>
538
- <button id="next-btn" class="hass-blue text-white w-12 h-12 rounded-full shadow-lg flex items-center justify-center hover:bg-blue-800 transition">
539
- <i class="fas fa-chevron-right"></i>
540
- </button>
541
- </div>
542
-
543
- <!-- Footer -->
544
- <footer class="gradient-bg text-white py-10">
545
- <div class="container mx-auto px-6">
546
- <div class="flex flex-col md:flex-row justify-between items-center">
547
- <div class="mb-6 md:mb-0">
548
- <div class="flex items-center">
549
- <i class="fas fa-gas-pump text-2xl mr-3"></i>
550
- <span class="font-bold text-xl">PetroConnect</span>
551
- </div>
552
- <p class="mt-2 text-blue-100">Strategic fuel distribution partner to Hass Petroleum</p>
553
- <div class="mt-3 text-sm">
554
- <p>Mohamed Amin Jabane, Managing Director</p>
555
- <p class="flex items-center mt-1">
556
- <i class="fas fa-phone-alt mr-2"></i>
557
- <span>0716 331 902</span>
558
- </p>
559
- </div>
560
- </div>
561
-
562
- <div class="flex space-x-6">
563
- <a href="#" class="hover:text-blue-300 transition">
564
- <i class="fab fa-linkedin-in"></i>
565
- </a>
566
- <a href="#" class="hover:text-blue-300 transition">
567
- <i class="fas fa-envelope"></i>
568
- </a>
569
- <a href="#" class="hover:text-blue-300 transition">
570
- <i class="fas fa-phone-alt"></i>
571
- </a>
572
- </div>
573
- </div>
574
-
575
- <div class="border-t border-blue-700 mt-8 pt-8 text-sm text-blue-200">
576
- <div class="flex flex-col md:flex-row justify-between items-center">
577
- <p>© 2023 PetroConnect. All rights reserved.</p>
578
- <div class="flex space-x-6 mt-4 md:mt-0">
579
- <a href="#" class="hover:text-white transition">Confidentiality</a>
580
- <a href="#" class="hover:text-white transition">Partner Login</a>
581
- <a href="#" class="hover:text-white transition">Contact Team</a>
582
- </div>
583
- </div>
584
- </div>
585
- </div>
586
- </footer>
587
-
588
- <script>
589
- document.addEventListener('DOMContentLoaded', function() {
590
- const slides = document.querySelectorAll('.slide');
591
- const navLinks = document.querySelectorAll('.nav-link');
592
- const prevBtn = document.getElementById('prev-btn');
593
- const nextBtn = document.getElementById('next-btn');
594
- const progressBar = document.getElementById('progress-bar');
595
- const menuToggle = document.getElementById('menu-toggle');
596
- const mobileMenu = document.getElementById('mobile-menu');
597
-
598
- let currentSlide = 0;
599
-
600
- // Show first slide
601
- showSlide(currentSlide);
602
-
603
- // Navigation functions
604
- function showSlide(n) {
605
- slides.forEach(slide => slide.classList.remove('active'));
606
- slides[n].classList.add('active');
607
-
608
- // Update progress bar
609
- const progress = ((n + 1) / slides.length) * 100;
610
- progressBar.style.width = `${progress}%`;
611
-
612
- // Update active nav link
613
- navLinks.forEach(link => {
614
- link.classList.remove('font-bold', 'border-b-2');
615
- if (parseInt(link.dataset.slide) === n) {
616
- link.classList.add('font-bold', 'border-b-2');
617
- }
618
- });
619
- }
620
-
621
- function nextSlide() {
622
- currentSlide = (currentSlide + 1) % slides.length;
623
- showSlide(currentSlide);
624
- }
625
-
626
- function prevSlide() {
627
- currentSlide = (currentSlide - 1 + slides.length) % slides.length;
628
- showSlide(currentSlide);
629
- }
630
-
631
- // Event listeners
632
- nextBtn.addEventListener('click', nextSlide);
633
- prevBtn.addEventListener('click', prevSlide);
634
-
635
- navLinks.forEach(link => {
636
- link.addEventListener('click', function(e) {
637
- e.preventDefault();
638
- currentSlide = parseInt(this.dataset.slide);
639
- showSlide(currentSlide);
640
-
641
- // Hide mobile menu after selection
642
- if (mobileMenu.classList.contains('hidden') === false) {
643
- mobileMenu.classList.add('hidden');
644
- }
645
- });
646
- });
647
-
648
- // Keyboard navigation
649
- document.addEventListener('keydown', function(e) {
650
- if (e.key === 'ArrowRight') {
651
- nextSlide();
652
- } else if (e.key === 'ArrowLeft') {
653
- prevSlide();
654
- }
655
- });
656
-
657
- // Mobile menu toggle
658
- menuToggle.addEventListener('click', function() {
659
- mobileMenu.classList.toggle('hidden');
660
- });
661
-
662
- // Smooth scroll for anchor links
663
- document.querySelectorAll('a[href^="#"]').forEach(anchor => {
664
- anchor.addEventListener('click', function(e) {
665
- e.preventDefault();
666
- document.querySelector(this.getAttribute('href')).scrollIntoView({
667
- behavior: 'smooth'
668
- });
669
- });
670
- });
671
- });
672
- </script>
673
- <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=ghost325/oil-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
674
- </html>
 
1
  <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>My app</title>
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
+ <meta charset="utf-8">
 
 
7
  <style>
8
+ body {
9
+ display: flex;
10
+ justify-content: center;
11
+ align-items: center;
12
+ overflow: hidden;
13
+ height: 100dvh;
14
+ font-family: "Arial", sans-serif;
15
+ text-align: center;
16
+ }
17
+ .arrow {
18
+ position: absolute;
19
+ bottom: 32px;
20
+ left: 0px;
21
+ width: 100px;
22
+ transform: rotate(30deg);
23
+ }
24
+ h1 {
25
+ font-size: 50px;
26
+ }
27
+ h1 span {
28
+ color: #acacac;
29
+ font-size: 32px;
30
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
  </style>
32
+ </head>
33
+ <body>
34
+ <h1>
35
+ <span>I'm ready to work,</span><br />
36
+ Ask me anything.
37
+ </h1>
38
+ <img src="https://enzostvs-deepsite.hf.space/arrow.svg" class="arrow" />
39
+ <script></script>
40
+ <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=ghost325/oil-2" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
41
+ </html>