File size: 1,070 Bytes
13ae717
 
 
 
 
 
 
8185bfc
 
 
 
 
 
13ae717
8185bfc
 
 
 
 
13ae717
 
 
 
 
 
 
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
export const defaultHTML = `<!DOCTYPE html>
<html>
  <head>
    <title>My app</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta charset="utf-8">
    <script src="https://cdn.tailwindcss.com"></script>
    <style>
      body { background: #181a20; }
      .glass { background: #23242a; border-radius: 14px; }
      .vibe-badge { border: 1px solid #ffe06650; background: #23242a; color: #ffe066; font-weight: 600; }
      .neon { text-shadow: 0 0 1.5px #ffe066; }
    </style>
  </head>
  <body class="flex justify-center items-center h-screen overflow-hidden font-sans text-center px-6 text-white">
    <div class="w-full glass p-8">
      <span class="text-xs rounded-full mb-4 inline-block px-3 py-1 vibe-badge">🔥 New version dropped!</span>
      <h1 class="text-4xl lg:text-7xl font-black font-sans tracking-tight neon">
        <span class="text-2xl lg:text-4xl block font-bold text-neutral-400 mb-1">I'm ready to work,</span>
        Ask me anything.
      </h1>
    </div>
    <script></script>
  </body>
</html>
`;