File size: 1,119 Bytes
901982e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<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>