index.html 813 B

1234567891011121314151617181920212223
  1. <!doctype html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta
  6. name="viewport"
  7. content="width=device-width, initial-scale=1.0"
  8. />
  9. <title>Simubus - Electrical Wiring Simulator</title>
  10. <link rel="preconnect" href="https://fonts.googleapis.com" />
  11. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
  12. <link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Nunito:wght@700;800;900&family=Noto+Sans+SC:wght@400;500;700;800;900&display=swap" rel="stylesheet" />
  13. <meta
  14. name="description"
  15. content="Simubus electrical wiring simulator landing page built with Vue 3."
  16. />
  17. </head>
  18. <body>
  19. <div id="app"></div>
  20. <script type="module" src="/src/main.js"></script>
  21. </body>
  22. </html>