Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/app/customer/services/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function ServiceDetailPage() {
<h2 className="text-2xl font-bold text-gray-900 mb-2">Service Not Found</h2>
<p className="text-gray-600 mb-6">{error || 'The requested service could not be found.'}</p>
<button
onClick={() => router.push('/services')}
onClick={() => router.push('/customer/services')}
className="px-6 py-3 bg-blue-600 text-white rounded-lg hover:bg-blue-700 transition-colors"
>
Back to Services
Expand Down Expand Up @@ -103,7 +103,7 @@ export default function ServiceDetailPage() {
<div className="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8 py-8">
{/* Back Button */}
<button
onClick={() => router.push('/services')}
onClick={() => router.push('/customer/services')}
className="flex items-center gap-2 text-blue-600 hover:text-blue-700 mb-6 transition-colors"
>
<svg className="w-5 h-5" fill="none" stroke="currentColor" viewBox="0 0 24 24">
Expand Down
2 changes: 1 addition & 1 deletion src/app/customer/services/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ export default function VehicleServicesPage() {
{/* Action Buttons */}
<div className="flex gap-2">
<a
href={`/services/${service.id}`}
href={`/customer/services/${service.id}`}
className="flex-1 px-4 py-2.5 text-sm font-medium text-gray-700 bg-gray-100 rounded-lg hover:bg-gray-200 transition-colors text-center"
>
Details
Expand Down