File size: 3,305 Bytes
2accaeb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Reel Creator AI</title>
  <script src="https://cdn.tailwindcss.com"></script>
  <style>
    /* Custom scrollbar for webkit browsers */
    ::-webkit-scrollbar {
      width: 8px;
      height: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #2d3748; /* slate-800 */
    }
    ::-webkit-scrollbar-thumb {
      background: #4a5568; /* slate-600 */
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #718096; /* slate-500 */
    }
    /* Basic body styling for dark theme */
    body {
      font-family: 'Inter', sans-serif; /* Using a common sans-serif font */
      background-color: #111827; /* gray-900 */
      color: #f3f4f6; /* gray-100 */
    }
    /* Add Inter font from Google Fonts (optional, Tailwind uses system fonts by default) */
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

    /* Styles for Markdown content */
    .markdown-content strong, .markdown-content b {
      font-weight: bold;
    }
    .markdown-content em, .markdown-content i {
      font-style: italic;
    }
    .markdown-content ul {
      list-style-type: disc;
      margin-left: 1.5rem;
      padding-left: 0.5rem;
    }
    .markdown-content ol {
      list-style-type: decimal;
      margin-left: 1.5rem;
      padding-left: 0.5rem;
    }
    .markdown-content li {
      margin-bottom: 0.25rem;
    }
    .markdown-content p {
      margin-bottom: 0.5rem;
    }
     .markdown-content p:last-child {
      margin-bottom: 0;
    }
    .markdown-content code {
      background-color: #2d3748; /* slate-700 */
      padding: 0.125rem 0.25rem;
      border-radius: 0.25rem;
      font-family: 'Courier New', Courier, monospace;
    }
    .markdown-content pre {
      background-color: #1f2937; /* slate-800 */
      padding: 0.75rem;
      border-radius: 0.375rem;
      overflow-x: auto;
      margin-bottom: 0.5rem;
    }
    .markdown-content pre code {
      background-color: transparent;
      padding: 0;
    }
    .markdown-content blockquote {
      border-left: 4px solid #4a5568; /* slate-600 */
      padding-left: 1rem;
      margin-left: 0;
      font-style: italic;
      color: #9ca3af; /* slate-400 */
    }
    .markdown-content h1, .markdown-content h2, .markdown-content h3, .markdown-content h4, .markdown-content h5, .markdown-content h6 {
      font-weight: bold;
      margin-top: 1rem;
      margin-bottom: 0.5rem;
    }
    .markdown-content h1 { font-size: 1.875rem; } /* text-3xl */
    .markdown-content h2 { font-size: 1.5rem; }    /* text-2xl */
    .markdown-content h3 { font-size: 1.25rem; }   /* text-xl */

  </style>
<script type="importmap">
{
  "imports": {
    "react-dom/": "https://esm.sh/react-dom@^19.1.0/",
    "react/": "https://esm.sh/react@^19.1.0/",
    "react": "https://esm.sh/react@^19.1.0",
    "@google/genai": "https://esm.sh/@google/genai@^1.3.0",
    "marked": "https://esm.sh/marked@^13.0.2"
  }
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body>
  <div id="root"></div>
  <script type="module" src="bundle.js"></script>
<script type="module" src="/index.tsx"></script>
</body>
</html>