import Head from 'next/head'; import { type FunctionComponent } from 'react'; import { NotFound } from '@/components/NotFound'; const NotFoundPage: FunctionComponent = () => ( <> Page not found - Scrabble Solver ); export default NotFoundPage;