Utkarshres32 commited on
Commit
a913bac
·
verified ·
1 Parent(s): fa7350f

Create a complete functional website like https://zeorouteplanner.com/route-planner-for-fleets/

Browse files
Files changed (3) hide show
  1. README.md +8 -5
  2. index.html +193 -19
  3. style.css +2 -27
README.md CHANGED
@@ -1,10 +1,13 @@
1
  ---
2
- title: Fleetflow Navigator
3
- emoji: 📈
4
- colorFrom: purple
5
- colorTo: red
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: FleetFlow Navigator 🚛💨
3
+ colorFrom: blue
4
+ colorTo: gray
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://huggingface.co/deepsite).
index.html CHANGED
@@ -1,19 +1,193 @@
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>FleetFlow Navigator | Optimize Your Fleet Routes</title>
7
+ <link rel="stylesheet" href="style.css">
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
+ <script src="components/navbar.js"></script>
12
+ <script src="components/footer.js"></script>
13
+ <script src="components/feature-card.js"></script>
14
+ </head>
15
+ <body class="bg-gray-50">
16
+ <custom-navbar></custom-navbar>
17
+
18
+ <main>
19
+ <!-- Hero Section -->
20
+ <section class="relative bg-gradient-to-r from-blue-600 to-indigo-800 text-white py-20 px-4 sm:px-6 lg:px-8">
21
+ <div class="max-w-7xl mx-auto">
22
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
23
+ <div class="mb-12 lg:mb-0">
24
+ <h1 class="text-4xl md:text-5xl font-bold mb-6">Smart Route Planning for Your Fleet</h1>
25
+ <p class="text-xl mb-8 opacity-90">Optimize routes, reduce costs, and improve efficiency with our advanced fleet management solution.</p>
26
+ <div class="flex flex-col sm:flex-row gap-4">
27
+ <a href="/demo" class="bg-white text-blue-600 hover:bg-blue-50 font-semibold py-3 px-6 rounded-lg transition duration-300 text-center">
28
+ Request Demo
29
+ </a>
30
+ <a href="/features" class="bg-transparent border-2 border-white hover:bg-white hover:text-blue-600 font-semibold py-3 px-6 rounded-lg transition duration-300 text-center">
31
+ Learn More
32
+ </a>
33
+ </div>
34
+ </div>
35
+ <div class="relative">
36
+ <div class="bg-white/20 backdrop-blur-sm rounded-xl p-4">
37
+ <div class="bg-white rounded-lg shadow-xl overflow-hidden">
38
+ <div class="p-4 bg-gray-100 flex items-center gap-2">
39
+ <div class="w-3 h-3 rounded-full bg-red-500"></div>
40
+ <div class="w-3 h-3 rounded-full bg-yellow-500"></div>
41
+ <div class="w-3 h-3 rounded-full bg-green-500"></div>
42
+ </div>
43
+ <div class="p-4">
44
+ <div class="h-64 bg-gray-200 rounded-md flex items-center justify-center">
45
+ <i data-feather="map" class="w-16 h-16 text-gray-400"></i>
46
+ </div>
47
+ </div>
48
+ </div>
49
+ </div>
50
+ </div>
51
+ </div>
52
+ </div>
53
+ </section>
54
+
55
+ <!-- Features Section -->
56
+ <section class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
57
+ <div class="max-w-7xl mx-auto">
58
+ <div class="text-center mb-16">
59
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Powerful Features for Fleet Management</h2>
60
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Our platform provides everything you need to optimize your fleet operations</p>
61
+ </div>
62
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
63
+ <custom-feature-card
64
+ icon="map-pin"
65
+ title="Optimized Routing"
66
+ description="Generate the most efficient routes based on vehicle capacity, traffic, and delivery windows."
67
+ ></custom-feature-card>
68
+ <custom-feature-card
69
+ icon="bar-chart-2"
70
+ title="Real-time Analytics"
71
+ description="Monitor fleet performance with live dashboards and detailed reports."
72
+ ></custom-feature-card>
73
+ <custom-feature-card
74
+ icon="users"
75
+ title="Driver Management"
76
+ description="Track driver performance, hours, and compliance with regulations."
77
+ ></custom-feature-card>
78
+ <custom-feature-card
79
+ icon="clock"
80
+ title="ETA Predictions"
81
+ description="Accurate arrival time estimates using historical and real-time data."
82
+ ></custom-feature-card>
83
+ <custom-feature-card
84
+ icon="alert-triangle"
85
+ title="Alerts & Notifications"
86
+ description="Get notified about delays, traffic, or vehicle issues immediately."
87
+ ></custom-feature-card>
88
+ <custom-feature-card
89
+ icon="dollar-sign"
90
+ title="Cost Reduction"
91
+ description="Reduce fuel costs and vehicle wear with optimized routes."
92
+ ></custom-feature-card>
93
+ </div>
94
+ </div>
95
+ </section>
96
+
97
+ <!-- Demo Section -->
98
+ <section class="py-20 px-4 sm:px-6 lg:px-8 bg-gray-100">
99
+ <div class="max-w-7xl mx-auto">
100
+ <div class="lg:grid lg:grid-cols-2 lg:gap-8 items-center">
101
+ <div class="mb-12 lg:mb-0">
102
+ <h2 class="text-3xl font-bold text-gray-900 mb-6">See It In Action</h2>
103
+ <p class="text-xl text-gray-600 mb-8">Schedule a personalized demo to see how FleetFlow Navigator can transform your fleet operations.</p>
104
+ <form class="space-y-4">
105
+ <div>
106
+ <input type="text" placeholder="Your Name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
107
+ </div>
108
+ <div>
109
+ <input type="email" placeholder="Email Address" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
110
+ </div>
111
+ <div>
112
+ <input type="text" placeholder="Company Name" class="w-full px-4 py-3 rounded-lg border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500">
113
+ </div>
114
+ <button type="submit" class="w-full bg-blue-600 hover:bg-blue-700 text-white font-semibold py-3 px-6 rounded-lg transition duration-300">
115
+ Request Demo
116
+ </button>
117
+ </form>
118
+ </div>
119
+ <div class="relative">
120
+ <div class="bg-white rounded-xl shadow-xl overflow-hidden p-6">
121
+ <div class="aspect-w-16 aspect-h-9">
122
+ <div class="bg-gray-200 rounded-lg flex items-center justify-center h-64">
123
+ <i data-feather="play" class="w-16 h-16 text-blue-600"></i>
124
+ </div>
125
+ </div>
126
+ <div class="mt-6">
127
+ <h3 class="text-xl font-semibold text-gray-900 mb-2">Watch Product Overview</h3>
128
+ <p class="text-gray-600">See how our platform helps businesses like yours optimize their fleet operations.</p>
129
+ </div>
130
+ </div>
131
+ </div>
132
+ </div>
133
+ </div>
134
+ </section>
135
+
136
+ <!-- Testimonials -->
137
+ <section class="py-20 px-4 sm:px-6 lg:px-8 bg-white">
138
+ <div class="max-w-7xl mx-auto">
139
+ <div class="text-center mb-16">
140
+ <h2 class="text-3xl font-bold text-gray-900 mb-4">Trusted by Industry Leaders</h2>
141
+ <p class="text-xl text-gray-600 max-w-3xl mx-auto">Hear what our customers have to say about FleetFlow Navigator</p>
142
+ </div>
143
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
144
+ <div class="bg-gray-50 p-8 rounded-xl">
145
+ <div class="flex items-center mb-4">
146
+ <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center">
147
+ <i data-feather="user" class="text-blue-600"></i>
148
+ </div>
149
+ <div class="ml-4">
150
+ <h4 class="font-semibold">Michael Johnson</h4>
151
+ <p class="text-gray-600 text-sm">Logistics Manager</p>
152
+ </div>
153
+ </div>
154
+ <p class="text-gray-700">"FleetFlow Navigator reduced our route planning time by 70% and improved our delivery efficiency significantly. The analytics dashboard gives us real insights into our operations."</p>
155
+ </div>
156
+ <div class="bg-gray-50 p-8 rounded-xl">
157
+ <div class="flex items-center mb-4">
158
+ <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center">
159
+ <i data-feather="user" class="text-blue-600"></i>
160
+ </div>
161
+ <div class="ml-4">
162
+ <h4 class="font-semibold">Sarah Williams</h4>
163
+ <p class="text-gray-600 text-sm">Operations Director</p>
164
+ </div>
165
+ </div>
166
+ <p class="text-gray-700">"The optimization algorithms are incredibly accurate. We've seen a 15% reduction in fuel costs since implementing FleetFlow Navigator across our 150-vehicle fleet."</p>
167
+ </div>
168
+ <div class="bg-gray-50 p-8 rounded-xl">
169
+ <div class="flex items-center mb-4">
170
+ <div class="w-12 h-12 rounded-full bg-blue-100 flex items-center justify-center">
171
+ <i data-feather="user" class="text-blue-600"></i>
172
+ </div>
173
+ <div class="ml-4">
174
+ <h4 class="font-semibold">David Chen</h4>
175
+ <p class="text-gray-600 text-sm">CTO</p>
176
+ </div>
177
+ </div>
178
+ <p class="text-gray-700">"Integration with our existing systems was seamless. The API documentation is excellent, and the support team was responsive throughout the implementation process."</p>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </section>
183
+ </main>
184
+
185
+ <custom-footer></custom-footer>
186
+
187
+ <script>
188
+ feather.replace();
189
+ </script>
190
+ <script src="script.js"></script>
191
+ <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
192
+ </body>
193
+ </html>
style.css CHANGED
@@ -1,28 +1,3 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
- }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
- }
17
-
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
- }
25
-
26
- .card p:last-child {
27
- margin-bottom: 0;
28
- }
 
1
+ /* Custom styles that can't be easily achieved with Tailwind */
 
 
 
2
 
3
+ /* Smooth scrolling for anchor links{"ok":false,"message":"terminated"}