Resto·Ka — tous les restaurants du Québec, menus complets et prix réels (famille ·Ka)
Python 69.3%
TypeScript 16.7%
CSS 7.9%
JavaScript 4.7%
HTML 1.4%
1<!doctype html>2<!-- ---------------------------------------------------------------------------3 Author: Simon-Pierre Boucher <contact@spboucher.ai>4 File: index.html5 Desc: Resto·Ka — agrégateur des restaurants du Québec (menus & prix).6---------------------------------------------------------------------------- -->7<html lang="fr-CA">8 <head>9 <meta charset="UTF-8" />10 <meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />11 <title>Resto-Ka — Un service Groupe KA</title>12 <meta name="description" content="Resto-Ka agrège les restaurants du Québec avec leurs menus complets et leurs prix réels — comparables, cherchables, dans les 17 régions. Chaque resto, chaque plat, chaque prix." />13 <meta name="theme-color" content="#ffffff" />14 <meta name="mobile-web-app-capable" content="yes" />15 <meta name="apple-mobile-web-app-capable" content="yes" />16 <meta name="apple-mobile-web-app-status-bar-style" content="default" />17 <meta name="apple-mobile-web-app-title" content="Resto-Ka" />18 <link rel="preconnect" href="https://fonts.googleapis.com" />19 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />20 <link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap" rel="stylesheet" />21 <link rel="icon" type="image/svg+xml" href="/favicon.svg" />22 <link rel="apple-touch-icon" href="/apple-touch-icon.png" />23 <meta property="og:image" content="https://www.resto-ka.com/og.png" />24 <meta property="og:image:width" content="1200" />25 <meta property="og:image:height" content="630" />26 <meta name="twitter:card" content="summary_large_image" />27 <meta name="twitter:image" content="https://www.resto-ka.com/og.png" />28 </head>29 <body>30 <div id="root"></div>31 <script type="module" src="/src/main.tsx"></script>32 <script>window.KA_AGENT={site:"resto-ka"}</script>33 <script src="/ka-agent.js" defer></script>34 <!-- KA ID v2 : signaux navigateur de la personnalisation (clics, dwell) -->35 <script>window.KAID_CONF={card:"a[href^='/resto/']",detail:"^/resto/(.+)$",entity:"restaurant"}</script>36 <script src="/ka-id.js" defer></script>37 </body>38</html>39