sdurdiyev commited on
Commit
264cd06
·
verified ·
1 Parent(s): dd93688

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +7 -5
  2. index.html +518 -19
  3. prompts.txt +0 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Ratedispatch5
3
- emoji: 👀
4
- colorFrom: red
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: ratedispatch5
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: purple
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,518 @@
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>RateDispatch | Freight Dispatch Platform</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
+ .flat-card {
11
+ border-radius: 8px;
12
+ box-shadow: 0 2px 8px rgba(0,0,0,0.08);
13
+ transition: all 0.3s ease;
14
+ }
15
+ .flat-card:hover {
16
+ box-shadow: 0 4px 12px rgba(0,0,0,0.12);
17
+ transform: translateY(-2px);
18
+ }
19
+ .flat-btn {
20
+ border-radius: 6px;
21
+ transition: all 0.2s ease;
22
+ }
23
+ .flat-btn:hover {
24
+ transform: translateY(-1px);
25
+ }
26
+ .primary-bg {
27
+ background-color: #3b82f6;
28
+ }
29
+ .primary-text {
30
+ color: #3b82f6;
31
+ }
32
+ .secondary-bg {
33
+ background-color: #10b981;
34
+ }
35
+ .secondary-text {
36
+ color: #10b981;
37
+ }
38
+ .divider {
39
+ height: 1px;
40
+ background-color: #e5e7eb;
41
+ }
42
+ .rating-stars {
43
+ color: #f59e0b;
44
+ }
45
+ </style>
46
+ </head>
47
+ <body class="bg-gray-50 font-sans">
48
+ <!-- Navigation -->
49
+ <nav class="bg-white shadow-sm">
50
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
51
+ <div class="flex justify-between h-16">
52
+ <div class="flex items-center">
53
+ <div class="flex-shrink-0 flex items-center">
54
+ <i class="fas fa-truck text-blue-500 text-2xl mr-2"></i>
55
+ <span class="text-xl font-bold text-gray-800">Rate<span class="text-blue-500">Dispatch</span></span>
56
+ </div>
57
+ <div class="hidden sm:ml-6 sm:flex sm:space-x-8">
58
+ <a href="#" class="border-blue-500 text-gray-900 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Find Dispatchers</a>
59
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Find Carriers</a>
60
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Messages</a>
61
+ <a href="#" class="border-transparent text-gray-500 hover:border-gray-300 hover:text-gray-700 inline-flex items-center px-1 pt-1 border-b-2 text-sm font-medium">Reports</a>
62
+ </div>
63
+ </div>
64
+ <div class="hidden sm:ml-6 sm:flex sm:items-center">
65
+ <button class="flat-btn px-4 py-2 text-sm font-medium text-gray-700 mr-4 bg-gray-100">Log In</button>
66
+ <button class="flat-btn px-4 py-2 text-sm font-medium text-white bg-blue-500 hover:bg-blue-600">Sign Up</button>
67
+ </div>
68
+ <div class="-mr-2 flex items-center sm:hidden">
69
+ <button type="button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-blue-500">
70
+ <span class="sr-only">Open main menu</span>
71
+ <i class="fas fa-bars"></i>
72
+ </button>
73
+ </div>
74
+ </div>
75
+ </div>
76
+ </nav>
77
+
78
+ <!-- Hero Section -->
79
+ <div class="bg-white">
80
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
81
+ <div class="lg:grid lg:grid-cols-12 lg:gap-8">
82
+ <div class="px-4 sm:px-0 sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left lg:flex lg:items-center">
83
+ <div>
84
+ <h1 class="text-4xl tracking-tight font-extrabold text-gray-900 sm:text-5xl md:text-6xl">
85
+ <span class="block">The freight dispatch</span>
86
+ <span class="block text-blue-500">platform that works</span>
87
+ </h1>
88
+ <p class="mt-3 text-base text-gray-500 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
89
+ Connect with the best trucking companies or find qualified dispatchers to handle your freight. Our platform makes logistics simple and efficient.
90
+ </p>
91
+ <div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0">
92
+ <div class="grid grid-cols-1 gap-3 sm:grid-cols-2">
93
+ <div class="rounded-md shadow">
94
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 hover:bg-blue-600 md:py-4 md:text-lg md:px-10">
95
+ Post a Load
96
+ </a>
97
+ </div>
98
+ <div>
99
+ <a href="#" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-500 bg-blue-50 hover:bg-blue-100 md:py-4 md:text-lg md:px-10">
100
+ Find Carriers
101
+ </a>
102
+ </div>
103
+ </div>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ <div class="mt-12 sm:mt-16 lg:mt-0 lg:col-span-6">
108
+ <div class="bg-white sm:max-w-md sm:w-full sm:mx-auto sm:rounded-lg sm:overflow-hidden">
109
+ <div class="px-4 py-8 sm:px-10">
110
+ <div class="text-center">
111
+ <h3 class="text-lg font-medium text-gray-900">How it works</h3>
112
+ </div>
113
+ <div class="mt-6 space-y-6">
114
+ <div class="flex items-start">
115
+ <div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
116
+ <i class="fas fa-search text-blue-500"></i>
117
+ </div>
118
+ <div class="ml-4">
119
+ <h4 class="text-sm font-medium text-gray-900">1. Post your load</h4>
120
+ <p class="mt-1 text-sm text-gray-500">Describe your freight requirements and budget</p>
121
+ </div>
122
+ </div>
123
+ <div class="flex items-start">
124
+ <div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
125
+ <i class="fas fa-bolt text-blue-500"></i>
126
+ </div>
127
+ <div class="ml-4">
128
+ <h4 class="text-sm font-medium text-gray-900">2. Receive bids</h4>
129
+ <p class="mt-1 text-sm text-gray-500">Qualified carriers will submit competitive bids</p>
130
+ </div>
131
+ </div>
132
+ <div class="flex items-start">
133
+ <div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
134
+ <i class="fas fa-check-circle text-blue-500"></i>
135
+ </div>
136
+ <div class="ml-4">
137
+ <h4 class="text-sm font-medium text-gray-900">3. Select carrier</h4>
138
+ <p class="mt-1 text-sm text-gray-500">Review profiles and ratings to choose the best match</p>
139
+ </div>
140
+ </div>
141
+ <div class="flex items-start">
142
+ <div class="flex-shrink-0 bg-blue-100 rounded-full p-2">
143
+ <i class="fas fa-truck text-blue-500"></i>
144
+ </div>
145
+ <div class="ml-4">
146
+ <h4 class="text-sm font-medium text-gray-900">4. Track shipment</h4>
147
+ <p class="mt-1 text-sm text-gray-500">Monitor your freight in real-time until delivery</p>
148
+ </div>
149
+ </div>
150
+ </div>
151
+ </div>
152
+ </div>
153
+ </div>
154
+ </div>
155
+ </div>
156
+ </div>
157
+
158
+ <!-- Marketplace Section -->
159
+ <div class="bg-gray-50 py-12">
160
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
161
+ <div class="lg:text-center">
162
+ <h2 class="text-base text-blue-500 font-semibold tracking-wide uppercase">Marketplace</h2>
163
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
164
+ Available loads and carriers
165
+ </p>
166
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
167
+ Browse through our active loads or find qualified carriers for your freight.
168
+ </p>
169
+ </div>
170
+
171
+ <div class="mt-10">
172
+ <div class="flex space-x-4 mb-6">
173
+ <button class="flat-btn px-4 py-2 text-sm font-medium text-white bg-blue-500">All Loads</button>
174
+ <button class="flat-btn px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100">Dry Van</button>
175
+ <button class="flat-btn px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100">Reefer</button>
176
+ <button class="flat-btn px-4 py-2 text-sm font-medium text-gray-700 bg-gray-100">Flatbed</button>
177
+ </div>
178
+
179
+ <div class="grid gap-6 md:grid-cols-2 lg:grid-cols-3">
180
+ <!-- Load Card 1 -->
181
+ <div class="flat-card bg-white p-6">
182
+ <div class="flex justify-between">
183
+ <div>
184
+ <h3 class="text-lg font-medium text-gray-900">Chicago, IL to Dallas, TX</h3>
185
+ <p class="mt-1 text-sm text-gray-500">Dry Van • 48,000 lbs</p>
186
+ </div>
187
+ <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-blue-100 text-blue-800">
188
+ $2,850
189
+ </span>
190
+ </div>
191
+ <div class="mt-4">
192
+ <p class="text-gray-600">Electronics - Must be delivered by Friday</p>
193
+ </div>
194
+ <div class="mt-6 pt-4 border-t border-gray-200">
195
+ <div class="flex justify-between items-center">
196
+ <div class="flex items-center">
197
+ <div class="flex-shrink-0">
198
+ <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1494790108377-be9c29b29330?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
199
+ </div>
200
+ <div class="ml-3">
201
+ <p class="text-sm font-medium text-gray-900">Sarah Johnson</p>
202
+ <div class="flex space-x-1">
203
+ <i class="fas fa-star rating-stars text-xs"></i>
204
+ <i class="fas fa-star rating-stars text-xs"></i>
205
+ <i class="fas fa-star rating-stars text-xs"></i>
206
+ <i class="fas fa-star rating-stars text-xs"></i>
207
+ <i class="fas fa-star rating-stars text-xs"></i>
208
+ <span class="text-xs text-gray-500">(24)</span>
209
+ </div>
210
+ </div>
211
+ </div>
212
+ <button class="flat-btn px-3 py-1 text-sm font-medium text-blue-500 bg-blue-50">View</button>
213
+ </div>
214
+ </div>
215
+ </div>
216
+
217
+ <!-- Load Card 2 -->
218
+ <div class="flat-card bg-white p-6">
219
+ <div class="flex justify-between">
220
+ <div>
221
+ <h3 class="text-lg font-medium text-gray-900">Atlanta, GA to Miami, FL</h3>
222
+ <p class="mt-1 text-sm text-gray-500">Reefer • 42,500 lbs</p>
223
+ </div>
224
+ <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-green-100 text-green-800">
225
+ $3,200
226
+ </span>
227
+ </div>
228
+ <div class="mt-4">
229
+ <p class="text-gray-600">Perishable goods - Temp control required</p>
230
+ </div>
231
+ <div class="mt-6 pt-4 border-t border-gray-200">
232
+ <div class="flex justify-between items-center">
233
+ <div class="flex items-center">
234
+ <div class="flex-shrink-0">
235
+ <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1570295999919-56ceb5ecca61?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
236
+ </div>
237
+ <div class="ml-3">
238
+ <p class="text-sm font-medium text-gray-900">Michael Rodriguez</p>
239
+ <div class="flex space-x-1">
240
+ <i class="fas fa-star rating-stars text-xs"></i>
241
+ <i class="fas fa-star rating-stars text-xs"></i>
242
+ <i class="fas fa-star rating-stars text-xs"></i>
243
+ <i class="fas fa-star rating-stars text-xs"></i>
244
+ <i class="fas fa-star-half-alt rating-stars text-xs"></i>
245
+ <span class="text-xs text-gray-500">(18)</span>
246
+ </div>
247
+ </div>
248
+ </div>
249
+ <button class="flat-btn px-3 py-1 text-sm font-medium text-blue-500 bg-blue-50">View</button>
250
+ </div>
251
+ </div>
252
+ </div>
253
+
254
+ <!-- Load Card 3 -->
255
+ <div class="flat-card bg-white p-6">
256
+ <div class="flex justify-between">
257
+ <div>
258
+ <h3 class="text-lg font-medium text-gray-900">Denver, CO to Phoenix, AZ</h3>
259
+ <p class="mt-1 text-sm text-gray-500">Flatbed • 45,000 lbs</p>
260
+ </div>
261
+ <span class="inline-flex items-center px-3 py-1 rounded-full text-sm font-medium bg-yellow-100 text-yellow-800">
262
+ $2,600
263
+ </span>
264
+ </div>
265
+ <div class="mt-4">
266
+ <p class="text-gray-600">Construction materials - Oversized load</p>
267
+ </div>
268
+ <div class="mt-6 pt-4 border-t border-gray-200">
269
+ <div class="flex justify-between items-center">
270
+ <div class="flex items-center">
271
+ <div class="flex-shrink-0">
272
+ <img class="h-10 w-10 rounded-full" src="https://images.unsplash.com/photo-1566492031773-4f4e44671857?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80" alt="">
273
+ </div>
274
+ <div class="ml-3">
275
+ <p class="text-sm font-medium text-gray-900">James Wilson</p>
276
+ <div class="flex space-x-1">
277
+ <i class="fas fa-star rating-stars text-xs"></i>
278
+ <i class="fas fa-star rating-stars text-xs"></i>
279
+ <i class="fas fa-star rating-stars text-xs"></i>
280
+ <i class="fas fa-star rating-stars text-xs"></i>
281
+ <i class="fas fa-star rating-stars text-xs"></i>
282
+ <span class="text-xs text-gray-500">(32)</span>
283
+ </div>
284
+ </div>
285
+ </div>
286
+ <button class="flat-btn px-3 py-1 text-sm font-medium text-blue-500 bg-blue-50">View</button>
287
+ </div>
288
+ </div>
289
+ </div>
290
+ </div>
291
+
292
+ <div class="mt-8 text-center">
293
+ <a href="#" class="inline-flex items-center px-4 py-2 border border-transparent text-sm font-medium rounded-md text-blue-500 bg-blue-50 hover:bg-blue-100">
294
+ View all available loads
295
+ <i class="fas fa-chevron-right ml-2"></i>
296
+ </a>
297
+ </div>
298
+ </div>
299
+ </div>
300
+ </div>
301
+
302
+ <!-- How It Works -->
303
+ <div class="bg-white py-12">
304
+ <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
305
+ <div class="lg:text-center">
306
+ <h2 class="text-base text-blue-500 font-semibold tracking-wide uppercase">For Carriers</h2>
307
+ <p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
308
+ Grow your trucking business
309
+ </p>
310
+ <p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
311
+ Find consistent freight and build your reputation on our platform.
312
+ </p>
313
+ </div>
314
+
315
+ <div class="mt-10">
316
+ <div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10">
317
+ <div class="flat-card bg-gray-50 p-6">
318
+ <div class="flex items-start">
319
+ <div class="flex-shrink-0 bg-blue-500 rounded-md p-3 text-white">
320
+ <i class="fas fa-search-dollar"></i>
321
+ </div>
322
+ <div class="ml-4">
323
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Find better paying loads</h3>
324
+ <p class="mt-2 text-base text-gray-500">
325
+ Access thousands of loads daily with transparent pricing and requirements.
326
+ </p>
327
+ </div>
328
+ </div>
329
+ </div>
330
+
331
+ <div class="flat-card bg-gray-50 p-6">
332
+ <div class="flex items-start">
333
+ <div class="flex-shrink-0 bg-green-500 rounded-md p-3 text-white">
334
+ <i class="fas fa-chart-line"></i>
335
+ </div>
336
+ <div class="ml-4">
337
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Reduce empty miles</h3>
338
+ <p class="mt-2 text-base text-gray-500">
339
+ Our matching algorithm helps you find backhauls and optimize your routes.
340
+ </p>
341
+ </div>
342
+ </div>
343
+ </div>
344
+
345
+ <div class="flat-card bg-gray-50 p-6">
346
+ <div class="flex items-start">
347
+ <div class="flex-shrink-0 bg-purple-500 rounded-md p-3 text-white">
348
+ <i class="fas fa-medal"></i>
349
+ </div>
350
+ <div class="ml-4">
351
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Build your reputation</h3>
352
+ <p class="mt-2 text-base text-gray-500">
353
+ Earn ratings and reviews that help you stand out to high-quality shippers.
354
+ </p>
355
+ </div>
356
+ </div>
357
+ </div>
358
+
359
+ <div class="flat-card bg-gray-50 p-6">
360
+ <div class="flex items-start">
361
+ <div class="flex-shrink-0 bg-yellow-500 rounded-md p-3 text-white">
362
+ <i class="fas fa-file-invoice-dollar"></i>
363
+ </div>
364
+ <div class="ml-4">
365
+ <h3 class="text-lg leading-6 font-medium text-gray-900">Get paid faster</h3>
366
+ <p class="mt-2 text-base text-gray-500">
367
+ Our payment system ensures you get paid on time, every time.
368
+ </p>
369
+ </div>
370
+ </div>
371
+ </div>
372
+ </div>
373
+ </div>
374
+ </div>
375
+ </div>
376
+
377
+ <!-- Stats -->
378
+ <div class="bg-blue-500">
379
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:py-16 sm:px-6 lg:px-8 lg:py-20">
380
+ <div class="max-w-4xl mx-auto text-center">
381
+ <h2 class="text-3xl font-extrabold text-white sm:text-4xl">
382
+ Trusted by thousands of logistics professionals
383
+ </h2>
384
+ <p class="mt-3 text-xl text-blue-100 sm:mt-4">
385
+ Join the platform that's transforming freight dispatch.
386
+ </p>
387
+ </div>
388
+ <div class="mt-10 text-center sm:max-w-3xl sm:mx-auto sm:grid sm:grid-cols-3 sm:gap-8">
389
+ <div class="flat-card bg-white p-6 m-4">
390
+ <span class="text-5xl font-extrabold text-blue-500">5,000+</span>
391
+ <p class="mt-2 text-base text-gray-500">Active Dispatchers</p>
392
+ </div>
393
+ <div class="flat-card bg-white p-6 m-4">
394
+ <span class="text-5xl font-extrabold text-blue-500">15,000+</span>
395
+ <p class="mt-2 text-base text-gray-500">Registered Carriers</p>
396
+ </div>
397
+ <div class="flat-card bg-white p-6 m-4">
398
+ <span class="text-5xl font-extrabold text-blue-500">$2B+</span>
399
+ <p class="mt-2 text-base text-gray-500">Freight Moved</p>
400
+ </div>
401
+ </div>
402
+ </div>
403
+ </div>
404
+
405
+ <!-- CTA -->
406
+ <div class="bg-white">
407
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:py-16 lg:px-8 lg:flex lg:items-center lg:justify-between">
408
+ <h2 class="text-3xl font-extrabold tracking-tight text-gray-900 sm:text-4xl">
409
+ <span class="block">Ready to transform your freight operations?</span>
410
+ <span class="block text-blue-500">Sign up for free today.</span>
411
+ </h2>
412
+ <div class="mt-8 flex lg:mt-0 lg:flex-shrink-0">
413
+ <div class="inline-flex rounded-md shadow">
414
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 hover:bg-blue-600">
415
+ Get started
416
+ </a>
417
+ </div>
418
+ <div class="ml-3 inline-flex">
419
+ <a href="#" class="inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-500 bg-blue-50 hover:bg-blue-100">
420
+ Learn more
421
+ </a>
422
+ </div>
423
+ </div>
424
+ </div>
425
+ </div>
426
+
427
+ <!-- Footer -->
428
+ <footer class="bg-gray-800">
429
+ <div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
430
+ <div class="grid grid-cols-2 md:grid-cols-4 gap-8">
431
+ <div>
432
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Company</h3>
433
+ <ul class="mt-4 space-y-4">
434
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">About</a></li>
435
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Careers</a></li>
436
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Press</a></li>
437
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Blog</a></li>
438
+ </ul>
439
+ </div>
440
+ <div>
441
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Solutions</h3>
442
+ <ul class="mt-4 space-y-4">
443
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">For Dispatchers</a></li>
444
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">For Carriers</a></li>
445
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Enterprise</a></li>
446
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Brokerage</a></li>
447
+ </ul>
448
+ </div>
449
+ <div>
450
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Resources</h3>
451
+ <ul class="mt-4 space-y-4">
452
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Help Center</a></li>
453
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Community</a></li>
454
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Webinars</a></li>
455
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">API Docs</a></li>
456
+ </ul>
457
+ </div>
458
+ <div>
459
+ <h3 class="text-sm font-semibold text-gray-300 tracking-wider uppercase">Legal</h3>
460
+ <ul class="mt-4 space-y-4">
461
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Privacy</a></li>
462
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Terms</a></li>
463
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Security</a></li>
464
+ <li><a href="#" class="text-base text-gray-400 hover:text-white">Compliance</a></li>
465
+ </ul>
466
+ </div>
467
+ </div>
468
+ <div class="mt-8 border-t border-gray-700 pt-8 md:flex md:items-center md:justify-between">
469
+ <div class="flex space-x-6 md:order-2">
470
+ <a href="#" class="text-gray-400 hover:text-gray-300">
471
+ <i class="fab fa-facebook-f"></i>
472
+ </a>
473
+ <a href="#" class="text-gray-400 hover:text-gray-300">
474
+ <i class="fab fa-twitter"></i>
475
+ </a>
476
+ <a href="#" class="text-gray-400 hover:text-gray-300">
477
+ <i class="fab fa-instagram"></i>
478
+ </a>
479
+ <a href="#" class="text-gray-400 hover:text-gray-300">
480
+ <i class="fab fa-linkedin-in"></i>
481
+ </a>
482
+ <a href="#" class="text-gray-400 hover:text-gray-300">
483
+ <i class="fab fa-youtube"></i>
484
+ </a>
485
+ </div>
486
+ <p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
487
+ &copy; 2023 RateDispatch. All rights reserved.
488
+ </p>
489
+ </div>
490
+ </div>
491
+ </footer>
492
+
493
+ <script>
494
+ // Simple animation for demo purposes
495
+ document.addEventListener('DOMContentLoaded', function() {
496
+ // Add hover effects to flat cards
497
+ const flatCards = document.querySelectorAll('.flat-card');
498
+ flatCards.forEach(card => {
499
+ card.addEventListener('mouseenter', function() {
500
+ this.style.transform = 'translateY(-2px)';
501
+ });
502
+ card.addEventListener('mouseleave', function() {
503
+ this.style.transform = 'translateY(0)';
504
+ });
505
+ });
506
+
507
+ // Mobile menu toggle would go here
508
+ const mobileMenuButton = document.querySelector('button[aria-label="Open main menu"]');
509
+ if (mobileMenuButton) {
510
+ mobileMenuButton.addEventListener('click', function() {
511
+ // This would toggle a mobile menu in a real implementation
512
+ console.log('Mobile menu clicked');
513
+ });
514
+ }
515
+ });
516
+ </script>
517
+ <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=sdurdiyev/ratedispatch5" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
518
+ </html>
prompts.txt ADDED
File without changes