-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotes.txt
More file actions
56 lines (39 loc) · 1.55 KB
/
Copy pathnotes.txt
File metadata and controls
56 lines (39 loc) · 1.55 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
<Route path="/signup" element={<SignupPage />} />
- Sign up page
- Name, Email address, Password, OTP
<Route path="/login" element={<LoginPage />} />
- Login page
- Email address and Password
<Route path="/dashboard" element={<LandingPage />} />
<Route path="/confirmation" element={<ConfirmPage />} />
<Route path="/payments" element={<PaymentPage />} />
- Landing page
- Navigation Bar
<Route path="/dashboard/book" element={<BookingPage />} />
- View and select available times and dates
<Route path="/dashboard/Confirmation" element={<ConfimationPage />} />
- View summary of booking
- Input Contact details
- Input Vehicle details
- Proceed to Summary page
<Route path="/dashboard/rates" element={<SummaryPage />} />
- summary of booking
- slot number
- date and time
- contact and Vehicle details
- total amount
- checkout button
<Route path="/dashboard/rates" element={<RatesPage />} />
- View Rates
<Route path="/dashboard/services" element={<ServicesPage />} />
- View Services
<Route path="/dashboard/cancellation" element={<CancellationPage />} />
- View Cancellation terms and conditions
<Route path="/confirmed" element={<ConfirmedPage />} />
- summary of booking
- show QR code entry and exit
<Route path="/admin" element={<AdminPage />} />
<Route path="/dashboard/book" element={<BookingPage />} />
<Route path="/dashboard/rates" element={<RatesPage />} />
<Route path="/dashboard/services" element={<ServicesPage />} />
<Route path="/admin" element={<AdminPage />} />