SPB Git

spb/fabri-ka Public

Agrégateur de produits québécois — www.fabri-ka.com

HTML 57.9% Python 18.6% TypeScript 15.6% CSS 7.8%
469 B · 18 lines tsx
Raw Blame History
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