A fast, local-first "redirection engine" for !bang users with a few extra features ^-^
1<!doctype html> 2<html lang="en"> 3 <head> 4 <meta charset="UTF-8" /> 5 <link rel="icon" type="image/svg+xml" href="/search.svg" /> 6 <link 7 rel="preconnect" 8 href="https://fonts.googleapis.com" 9 crossorigin="anonymous" 10 /> 11 <link 12 rel="preconnect" 13 href="https://fonts.gstatic.com" 14 crossorigin="anonymous" 15 /> 16 <link 17 rel="preload" 18 as="style" 19 href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" 20 /> 21 <link 22 rel="stylesheet" 23 href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" 24 media="print" 25 onload="this.media='all'" 26 /> 27 <link rel="preload" href="/global.css" as="style" /> 28 <link rel="stylesheet" href="/global.css" /> 29 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 30 <title>Unduck</title> 31 <meta 32 name="description" 33 content="A better default search engine (with bangs!)" 34 /> 35 </head> 36 <body> 37 <div id="app"></div> 38 <script type="module" src="/src/main.ts"></script> 39 </body> 40</html>