31 lines
998 B
TypeScript
31 lines
998 B
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
import { useRouter } from 'next/navigation';
|
|
import { routes } from '@/lib/routing/RouteConfig';
|
|
import { NotFoundTemplate, type NotFoundViewData } from '@/templates/NotFoundTemplate';
|
|
import { ClientWrapperProps } from '@/lib/contracts/components/ComponentContracts';
|
|
|
|
/**
|
|
* NotFoundPageClient
|
|
*
|
|
* Client-side entry point for the 404 page.
|
|
* Manages navigation logic and wires it to the template.
|
|
*/
|
|
export function NotFoundPageClient({ viewData: initialViewData }: Partial<ClientWrapperProps<NotFoundViewData>>) {
|
|
const router = useRouter();
|
|
|
|
const handleHomeClick = () => {
|
|
router.push(routes.public.home);
|
|
};
|
|
|
|
const viewData: NotFoundViewData = initialViewData ?? {
|
|
errorCode: 'Error 404',
|
|
title: 'OFF TRACK',
|
|
message: 'The requested sector does not exist. You have been returned to the pits.',
|
|
actionLabel: 'Return to Pits'
|
|
};
|
|
|
|
return <NotFoundTemplate viewData={viewData} onHomeClick={handleHomeClick} />;
|
|
}
|