spb/trouve-ka Public
Trouve-KA — moteur de recherche web indépendant, Québec-first. Crawler distribué, index OpenSearch, ranking bilingue, galerie d'images. En prod : www.trouve-ka.com
Python 76.8%
TypeScript 15.7%
SQL 3.9%
Shell 1.4%
CSS 1.3%
Dockerfile 0.7%
1/**2 * Trouve-KA — layout de la section admin (métadonnées, non indexée)3 * Author: Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 */67import type { Metadata } from "next";89export const metadata: Metadata = {10 title: "Administration",11 robots: { index: false, follow: false },12};1314export default function AdminLayout({15 children,16}: Readonly<{ children: React.ReactNode }>) {17 return children;18}19