馃 distributed transcription service thistle.dunkirk.sh
at main 1.3 kB view raw
1<!DOCTYPE html> 2<html lang="en"> 3 4<head> 5 <meta charset="UTF-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>Thistle</title> 8 <link rel="apple-touch-icon" sizes="180x180" href="../../public/favicon/apple-touch-icon.png"> 9 <link rel="icon" type="image/png" sizes="32x32" href="../../public/favicon/favicon-32x32.png"> 10 <link rel="icon" type="image/png" sizes="16x16" href="../../public/favicon/favicon-16x16.png"> 11 <link rel="manifest" href="../../public/favicon/site.webmanifest"> 12 <link rel="stylesheet" href="../styles/main.css"> 13 <link rel="stylesheet" href="../styles/index.css"> 14</head> 15 16<body> 17 <header> 18 <div class="header-content"> 19 <a href="/" class="site-title"> 20 <img src="../../public/favicon/favicon-32x32.png" alt="Thistle logo"> 21 <span>Thistle</span> 22 </a> 23 <auth-component></auth-component> 24 </div> 25 </header> 26 27 <main> 28 <h1 class="hero-title">Thistle</h1> 29 <p class="hero-subtitle">AI-powered audio transcription made simple</p> 30 31 <div class="cta-buttons"> 32 <button id="start-btn" class="btn btn-primary">Start Transcribing</button> 33 </div> 34 </main> 35 36 <script type="module" src="../components/auth.ts"></script> 37 <script type="module" src="./index.ts"></script> 38</body> 39 40</html>