-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (67 loc) · 2.26 KB
/
index.html
File metadata and controls
67 lines (67 loc) · 2.26 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AutoEbook Pro - Gerador de Infoprodutos</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
brand: {
50: '#f0f9ff',
100: '#e0f2fe',
500: '#0ea5e9',
600: '#0284c7',
900: '#0c4a6e',
}
},
fontFamily: {
serif: ['Merriweather', 'serif'],
sans: ['Inter', 'sans-serif'],
}
}
}
}
</script>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@300;400;700&display=swap" rel="stylesheet">
<style>
/* Print styles for PDF generation */
@media print {
@page { margin: 0; size: A4; }
body { -webkit-print-color-adjust: exact; background: white; color: black; }
.no-print { display: none !important; }
.page-break { page-break-after: always; }
.a4-page { box-shadow: none; margin: 0; page-break-after: always; }
}
.a4-page {
width: 210mm;
min-height: 297mm;
padding: 20mm;
margin: 0 auto;
background: white;
color: #0f172a; /* Always dark text on paper */
box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
</style>
<script type="importmap">
{
"imports": {
"react": "https://esm.sh/react@^19.2.3",
"react-dom/": "https://esm.sh/react-dom@^19.2.3/",
"react/": "https://esm.sh/react@^19.2.3/",
"react-markdown": "https://esm.sh/react-markdown@^10.1.0",
"lucide-react": "https://esm.sh/lucide-react@^0.562.0",
"@google/genai": "https://esm.sh/@google/genai@^1.35.0"
}
}
</script>
</head>
<body class="bg-slate-950 text-slate-100 font-sans antialiased selection:bg-brand-500 selection:text-white">
<div id="root"></div>
</body>
</html>