File size: 4,735 Bytes
2bb61c7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>DevTools Dashboard</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50">
    <custom-navbar></custom-navbar>
    
    <main class="container mx-auto px-4 py-8">
        <div class="bg-white rounded-xl shadow-md overflow-hidden p-6 mb-8">
            <div class="flex flex-col md:flex-row items-center justify-between">
                <div>
                    <h1 class="text-3xl font-bold text-gray-800 mb-2">Builder.io DevTools</h1>
                    <p class="text-gray-600">Powerful development tools at your fingertips</p>
                </div>
                <div class="mt-4 md:mt-0">
                    <button id="launchBtn" class="bg-blue-600 hover:bg-blue-700 text-white font-medium py-3 px-6 rounded-lg flex items-center transition-all">
                        <i data-feather="rocket" class="mr-2"></i>
                        Launch DevTools
                    </button>
                </div>
            </div>
        </div>

        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6">
                <div class="flex items-center mb-4">
                    <div class="bg-blue-100 p-3 rounded-full mr-4">
                        <i data-feather="code" class="text-blue-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-800">Visual Editor</h3>
                </div>
                <p class="text-gray-600">Drag and drop interface for building pages and components visually.</p>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6">
                <div class="flex items-center mb-4">
                    <div class="bg-purple-100 p-3 rounded-full mr-4">
                        <i data-feather="cpu" class="text-purple-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-800">API Explorer</h3>
                </div>
                <p class="text-gray-600">Test and debug your APIs with our powerful explorer tool.</p>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden p-6">
                <div class="flex items-center mb-4">
                    <div class="bg-green-100 p-3 rounded-full mr-4">
                        <i data-feather="bar-chart-2" class="text-green-600"></i>
                    </div>
                    <h3 class="text-xl font-semibold text-gray-800">Performance</h3>
                </div>
                <p class="text-gray-600">Monitor and optimize your application's performance metrics.</p>
            </div>
        </div>

        <div class="mt-8 bg-white rounded-xl shadow-md overflow-hidden p-6">
            <h2 class="text-2xl font-bold text-gray-800 mb-4">Getting Started</h2>
            <div class="bg-gray-50 rounded-lg p-4 mb-4">
                <code class="text-sm text-gray-800">npx @builder.io/dev-tools@latest</code>
            </div>
            <p class="text-gray-600 mb-4">Run this command in your project directory to install and launch the DevTools.</p>
            <div class="flex flex-wrap gap-4">
                <a href="#" class="text-blue-600 hover:text-blue-800 font-medium flex items-center">
                    <i data-feather="book" class="mr-2"></i> Documentation
                </a>
                <a href="#" class="text-blue-600 hover:text-blue-800 font-medium flex items-center">
                    <i data-feather="github" class="mr-2"></i> GitHub
                </a>
                <a href="#" class="text-blue-600 hover:text-blue-800 font-medium flex items-center">
                    <i data-feather="message-circle" class="mr-2"></i> Community
                </a>
            </div>
        </div>
    </main>

    <custom-footer></custom-footer>

    <script src="components/navbar.js"></script>
    <script src="components/footer.js"></script>
    <script src="script.js"></script>
    <script>
        feather.replace();
        document.getElementById('launchBtn').addEventListener('click', function() {
            // In a real implementation, this would trigger the DevTools launch
            alert('Launching Builder.io DevTools...');
        });
    </script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>