File size: 1,679 Bytes
24d6dda
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Markdown Editor</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
        body { font-family: 'Inter', sans-serif; }
    </style>
</head>
<body>
    <div class="min-h-screen bg-gradient-to-b from-gray-50 to-white">
        <div class="max-w-7xl mx-auto px-4 py-16">
            <div class="text-center mb-12">
                <h1 class="text-4xl font-bold mb-4">Markdown Editor</h1>
                <p class="text-gray-600 mb-8">Live markdown editor</p>
                <div class="flex justify-center gap-4">
                    <a href="https://hanzo.app/dev?template=https://github.com/Hanzo-Community/template-markdown-editor&action=deploy"
                       class="px-6 py-3 bg-purple-600 text-white rounded-lg hover:bg-purple-700 transition">
                        ⚡ Deploy to Hanzo
                    </a>
                    <a href="https://hanzo.app/dev?template=https://github.com/Hanzo-Community/template-markdown-editor&action=edit"
                       class="px-6 py-3 bg-white border border-gray-300 rounded-lg hover:bg-gray-50 transition">
                        ✏️ Edit on Hanzo
                    </a>
                </div>
            </div>
            <div class="bg-white rounded-lg shadow-xl p-8">
                <iframe src="preview.html" class="w-full h-[600px] rounded border"></iframe>
            </div>
        </div>
    </div>
</body>
</html>