-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.html
More file actions
246 lines (215 loc) Β· 8.17 KB
/
preview.html
File metadata and controls
246 lines (215 loc) Β· 8.17 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mobile Car Wash Manager - Preview</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
background: #f3f4f6;
color: #1f2937;
}
.header {
background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
color: white;
padding: 2rem;
text-align: center;
}
.header h1 {
font-size: 2rem;
margin-bottom: 0.5rem;
}
.container {
max-width: 1200px;
margin: 2rem auto;
padding: 0 1rem;
}
.card {
background: white;
border-radius: 12px;
padding: 2rem;
margin-bottom: 1.5rem;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.card h2 {
color: #2563eb;
margin-bottom: 1rem;
font-size: 1.5rem;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
margin-top: 1rem;
}
.stat {
background: #f9fafb;
padding: 1.5rem;
border-radius: 8px;
text-align: center;
}
.stat-value {
font-size: 2rem;
font-weight: bold;
color: #2563eb;
}
.stat-label {
color: #6b7280;
margin-top: 0.5rem;
}
.nav {
display: flex;
gap: 1rem;
flex-wrap: wrap;
margin-top: 1rem;
}
.nav-item {
background: #2563eb;
color: white;
padding: 0.75rem 1.5rem;
border-radius: 8px;
text-decoration: none;
transition: background 0.3s;
}
.nav-item:hover {
background: #1e40af;
}
.feature-list {
list-style: none;
margin-top: 1rem;
}
.feature-list li {
padding: 0.75rem;
border-left: 4px solid #2563eb;
margin-bottom: 0.5rem;
background: #f9fafb;
}
.warning {
background: #fef3c7;
border: 2px solid #f59e0b;
padding: 1.5rem;
border-radius: 8px;
margin-top: 2rem;
}
.warning h3 {
color: #92400e;
margin-bottom: 0.5rem;
}
.warning p {
color: #78350f;
line-height: 1.6;
}
.btn {
display: inline-block;
background: #10b981;
color: white;
padding: 1rem 2rem;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
margin-top: 1rem;
transition: background 0.3s;
}
.btn:hover {
background: #059669;
}
.screenshot {
background: #e5e7eb;
height: 300px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
color: #6b7280;
margin-top: 1rem;
}
</style>
</head>
<body>
<div class="header">
<h1>π Mobile Car Wash Manager</h1>
<p>Preview & Information</p>
</div>
<div class="container">
<div class="card">
<h2>π± App Preview</h2>
<p>This is a preview of your Mobile Car Wash Manager application.</p>
<div class="screenshot">
<div style="text-align: center;">
<div style="font-size: 3rem; margin-bottom: 1rem;">π</div>
<div>Application Preview</div>
<div style="font-size: 0.9rem; margin-top: 0.5rem; color: #9ca3af;">
The full app includes interactive features
</div>
</div>
</div>
</div>
<div class="card">
<h2>π Dashboard Overview</h2>
<div class="stats">
<div class="stat">
<div class="stat-value">12</div>
<div class="stat-label">Today's Appointments</div>
</div>
<div class="stat">
<div class="stat-value">$450</div>
<div class="stat-label">Today's Revenue</div>
</div>
<div class="stat">
<div class="stat-value">48</div>
<div class="stat-label">Total Customers</div>
</div>
<div class="stat">
<div class="stat-value">5</div>
<div class="stat-label">Active Employees</div>
</div>
</div>
</div>
<div class="card">
<h2>β¨ Features</h2>
<ul class="feature-list">
<li>π
<strong>Appointment Management</strong> - Schedule and track customer appointments</li>
<li>π₯ <strong>Customer Database</strong> - Store customer information and history</li>
<li>π§ <strong>Service Management</strong> - Define services and pricing</li>
<li>π¨βπΌ <strong>Employee Management</strong> - Track staff and assignments</li>
<li>π¦ <strong>Inventory Tracking</strong> - Monitor supplies with low stock alerts</li>
<li>πΊοΈ <strong>Route Planning</strong> - Plan daily service routes</li>
<li>π <strong>Reports & Analytics</strong> - View business performance</li>
<li>π± <strong>PWA Support</strong> - Works offline, installable on devices</li>
</ul>
</div>
<div class="card">
<h2>π To Run the Full App</h2>
<p>The full interactive app requires Node.js. Here's the simplest way:</p>
<div style="background: #1f2937; color: #f9fafb; padding: 1.5rem; border-radius: 8px; margin-top: 1rem; font-family: monospace;">
<div style="margin-bottom: 0.5rem;">1. Open terminal in this folder</div>
<div style="margin-bottom: 0.5rem;">2. Type: <span style="color: #10b981;">npm install</span></div>
<div style="margin-bottom: 0.5rem;">3. Type: <span style="color: #10b981;">npm run dev</span></div>
<div>4. Browser opens automatically!</div>
</div>
<p style="margin-top: 1rem; color: #6b7280;">
Or double-click <strong>start.bat</strong> if Node.js is installed.
</p>
</div>
<div class="warning">
<h3>β οΈ Note</h3>
<p>
This is a static preview page. The full app is a React application that needs to be built and run.
To see the interactive version with all features working, you need to run the development server.
See the instructions above or check the documentation files in this folder.
</p>
</div>
<div class="card" style="text-align: center; background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%); color: white;">
<h2 style="color: white;">Ready to Deploy?</h2>
<p style="margin: 1rem 0;">Your app is ready to be deployed online as a PWA!</p>
<a href="DEPLOY.txt" class="btn" style="background: white; color: #2563eb;">View Deployment Guide</a>
</div>
</div>
</body>
</html>