File size: 3,192 Bytes
23e9d56
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>PureFront | Frontend Wizardry</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <link rel="stylesheet" href="style.css">
    <style type="text/tailwindcss">
        @layer utilities {
            .text-shadow {
                text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            }
        }
    </style>
</head>
<body class="bg-gray-50 min-h-screen flex flex-col">
    <custom-navbar></custom-navbar>
    
    <main class="flex-grow container mx-auto px-4 py-12">
        <div class="max-w-4xl mx-auto text-center">
            <h1 class="text-5xl font-bold text-gray-800 mb-6 text-shadow">Frontend Wizardry ✨</h1>
            <p class="text-xl text-gray-600 mb-8">Pure frontend magic without backend constraints</p>
            
            <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-12">
                <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
                    <i data-feather="code" class="w-12 h-12 text-blue-500 mb-4 mx-auto"></i>
                    <h3 class="text-xl font-semibold mb-2">HTML5</h3>
                    <p class="text-gray-600">Semantic markup that search engines love</p>
                </div>
                
                <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
                    <i data-feather="feather" class="w-12 h-12 text-purple-500 mb-4 mx-auto"></i>
                    <h3 class="text-xl font-semibold mb-2">CSS3</h3>
                    <p class="text-gray-600">Beautiful designs with modern styling</p>
                </div>
                
                <div class="bg-white p-6 rounded-xl shadow-md hover:shadow-lg transition-shadow">
                    <i data-feather="zap" class="w-12 h-12 text-yellow-500 mb-4 mx-auto"></i>
                    <h3 class="text-xl font-semibold mb-2">JavaScript</h3>
                    <p class="text-gray-600">Interactive experiences that delight users</p>
                </div>
            </div>
            
            <div class="bg-gradient-to-r from-blue-500 to-purple-600 text-white p-8 rounded-xl shadow-lg max-w-2xl mx-auto">
                <h2 class="text-3xl font-bold mb-4">100% Frontend Solutions</h2>
                <p class="text-lg mb-6">Create stunning interfaces with just HTML, CSS and JavaScript. No backend required!</p>
                <button class="bg-white text-blue-600 font-semibold px-6 py-3 rounded-lg hover:bg-gray-100 transition-colors">
                    Start Crafting
                </button>
            </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();</script>
<script src="https://deepsite.hf.co/deepsite-badge.js"></script>
</body>
</html>