9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
/**
|
|
* @page Repair Services Route (`app/repair-services/page.tsx`)
|
|
* @purpose Renders device repair booking portal for /repair-services URLs.
|
|
*/
|
|
import RepairPortalPage from '../services/page';
|
|
|
|
export default function RepairServicesRoute() {
|
|
return <RepairPortalPage />;
|
|
}
|