Spaces:
Running
Running
| <html lang="zh-TW"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Vibecoding Workshop</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link | |
| href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;700&family=Noto+Sans+TC:wght@400;700&display=swap" | |
| rel="stylesheet"> | |
| <style> | |
| body { | |
| font-family: 'Noto Sans TC', sans-serif; | |
| background-color: #0f172a; | |
| /* Slate 900 */ | |
| color: #e2e8f0; | |
| /* Slate 200 */ | |
| } | |
| .font-mono { | |
| font-family: 'JetBrains Mono', monospace; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-slate-900 text-slate-200 antialiased selection:bg-cyan-500 selection:text-white"> | |
| <div id="app" class="max-w-7xl mx-auto"></div> | |
| <script type="module" src="./src/main.js"></script> | |
| </body> | |
| </html> |