spb/ora-ka Public
Ora-Ka — cinq agrégateurs Ka, une barre de recherche hybride (exact + sémantique)
Python 80%
TypeScript 12.9%
CSS 6.8%
1import { Link } from 'react-router-dom'2import EmptyState from '../components/EmptyState'34export default function NotFound() {5 return (6 <div className="page">7 <div className="notfound">8 <h1>404</h1>9 <EmptyState message="Cette page n'existe pas — mais nos produits québécois, oui.">10 <Link className="btn btn-primary" to="/">11 Retour à l'accueil12 </Link>13 </EmptyState>14 </div>15 </div>16 )17}18