File size: 4,550 Bytes
99fe303
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>CodeCraft Studio</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>
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    colors: {
                        primary: {
                            500: '#10b981',
                        },
                        secondary: {
                            500: '#d946ef',
                        }
                    }
                }
            }
        }
    </script>
</head>
<body class="bg-gray-50">
    <custom-navbar></custom-navbar>
    
    <main class="container mx-auto px-4 py-12">
        <section class="text-center mb-16">
            <h1 class="text-5xl font-bold text-primary-500 mb-4">CodeCraft Studio</h1>
            <p class="text-xl text-gray-600 max-w-2xl mx-auto">Transform your ideas into reality with our emerald & fuchsia powered coding platform</p>
        </section>

        <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
            <div class="bg-white rounded-xl shadow-md overflow-hidden transition-transform hover:scale-105">
                <div class="bg-primary-500 p-6 text-white">
                    <i data-feather="code" class="w-10 h-10 mb-4"></i>
                    <h2 class="text-2xl font-bold">Clean Code</h2>
                </div>
                <div class="p-6">
                    <p class="text-gray-600 mb-4">Write maintainable code with our best practices</p>
                    <button class="bg-secondary-500 hover:bg-secondary-600 text-white px-4 py-2 rounded-md transition-colors">Learn More</button>
                </div>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden transition-transform hover:scale-105">
                <div class="bg-secondary-500 p-6 text-white">
                    <i data-feather="cpu" class="w-10 h-10 mb-4"></i>
                    <h2 class="text-2xl font-bold">Fast Performance</h2>
                </div>
                <div class="p-6">
                    <p class="text-gray-600 mb-4">Optimized solutions for blazing fast applications</p>
                    <button class="bg-primary-500 hover:bg-primary-600 text-white px-4 py-2 rounded-md transition-colors">Learn More</button>
                </div>
            </div>

            <div class="bg-white rounded-xl shadow-md overflow-hidden transition-transform hover:scale-105">
                <div class="bg-primary-500 p-6 text-white">
                    <i data-feather="layout" class="w-10 h-10 mb-4"></i>
                    <h2 class="text-2xl font-bold">Beautiful UI</h2>
                </div>
                <div class="p-6">
                    <p class="text-gray-600 mb-4">Create stunning interfaces with our design system</p>
                    <button class="bg-secondary-500 hover:bg-secondary-600 text-white px-4 py-2 rounded-md transition-colors">Learn More</button>
                </div>
            </div>
        </div>

        <section class="mt-16 bg-gradient-to-r from-primary-500 to-secondary-500 rounded-xl p-8 text-white">
            <div class="max-w-4xl mx-auto text-center">
                <h2 class="text-3xl font-bold mb-4">Ready to Start Coding?</h2>
                <p class="text-xl mb-6">Join thousands of developers building amazing projects with our tools</p>
                <div class="flex flex-col sm:flex-row justify-center gap-4">
                    <button class="bg-white text-primary-500 hover:bg-gray-100 px-6 py-3 rounded-lg font-medium transition-colors">Get Started</button>
                    <button class="bg-transparent border-2 border-white hover:bg-white hover:bg-opacity-10 px-6 py-3 rounded-lg font-medium transition-colors">View Demo</button>
                </div>
            </div>
        </section>
    </main>

    <custom-footer></custom-footer>

    <script src="components/navbar.js"></script>
    <script src="components/footer.js"></script>
    <script src="script.js"></script>
    <script src="components/vibe-engine.js"></script>
    <script>feather.replace();</script>
    <vibe-engine></vibe-engine>
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>
</body>
</html>