-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpricing.html
More file actions
136 lines (129 loc) · 4.43 KB
/
pricing.html
File metadata and controls
136 lines (129 loc) · 4.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pricing Plans & Business Model</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
text-align: center;
}
.container {
max-width: 1200px;
margin: auto;
padding: 20px;
}
.pricing-section {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.card {
background: white;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
}
.card h2 {
color: #333;
}
.price {
font-size: 24px;
color: #27ae60;
font-weight: bold;
}
.features {
list-style: none;
padding: 0;
}
.features li {
padding: 5px;
}
.button {
display: inline-block;
margin-top: 15px;
padding: 10px 20px;
background: #27ae60;
color: white;
text-decoration: none;
border-radius: 5px;
}
.button:hover {
background: #219150;
}
</style>
</head>
<body>
<div class="container">
<h1>Pricing Plans & Business Model</h1>
<h2>For Logistics Owners</h2>
<div class="pricing-section">
<div class="card">
<h2>Basic Plan</h2>
<p class="price">₹6,000 for 3 months</p>
<ul class="features">
<li>Real-time fleet tracking</li>
<li>Compliance alerts</li>
<li>Basic AI fatigue monitoring</li>
<li>Pedestrian Crossing alert</li>
<li>Crash detection system</li>
</ul>
<a href="#" class="button">Subscribe</a>
</div>
<div class="card">
<h2>Premium Plan</h2>
<p class="price">₹10,000 for 6 months</p>
<ul class="features">
<li>Includes Basic Plan features</li>
<li>AI-driven assistance chatbot</li>
<li>CO₂ Emission Estimation</li>
<li>Live hospital location tracking</li>
<li>Voice interpretation</li>
<li>lane alignment</li>
</ul>
<a href="#" class="button">Subscribe</a>
</div>
</div>
<h2>For Mechanics</h2>
<div class="pricing-section">
<div class="card">
<h2>Commission-Based Repair Assignments</h2>
<p class="price">10-20% per repair</p>
<ul class="features">
<li>Receive repair requests</li>
<li>Earn based on completed jobs</li>
<li>Platform assigns repair jobs</li>
</ul>
<a href="#" class="button">Join Now</a>
</div>
<div class="card">
<h2>Subscription Model</h2>
<p class="price">₹2,000/month</p>
<ul class="features">
<li>Priority listing in searches</li>
<li>Increased job visibility</li>
<li>Exclusive leads</li>
</ul>
<a href="#" class="button">Join Now</a>
</div>
<div class="card">
<h2>Premium Visibility</h2>
<p class="price">₹5,000/month</p>
<ul class="features">
<li>Featured as "Preferred Service Provider"</li>
<li>Higher search ranking</li>
<li>More repair assignments</li>
</ul>
<a href="#" class="button">Join Now</a>
</div>
<button class="Pricing" onclick="location.href='pricing.html'">Pricing</button>
</div>
</div>
</body>
</html>