File size: 4,380 Bytes
42f44ac
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!DOCTYPE html>
<html lang="en" class="dark">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>ShadowStack Noir | Fullstack Development</title>
    <link rel="stylesheet" href="style.css">
    <script src="https://cdn.tailwindcss.com"></script>
    <script>
      tailwind.config = {
        darkMode: 'class',
        theme: {
          extend: {
            colors: {
              primary: {
                500: '#7c3aed',
                600: '#6d28d9',
              },
              secondary: {
                500: '#14b8a6',
                600: '#0d9488',
              }
            }
          }
        }
      }
    </script>
    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
    <script src="https://unpkg.com/feather-icons"></script>
    <script src="components/navbar.js"></script>
    <script src="components/footer.js"></script>
</head>
<body class="bg-gray-900 text-gray-100 min-h-screen flex flex-col">
    <custom-navbar></custom-navbar>
    
    <main class="flex-grow container mx-auto px-4 py-12">
        <section class="hero mb-20">
            <div class="max-w-4xl mx-auto text-center">
                <h1 class="text-5xl md:text-6xl font-bold mb-6 bg-gradient-to-r from-primary-500 to-secondary-500 bg-clip-text text-transparent">
                    Fullstack Development <br> Made Simple
                </h1>
                <p class="text-xl text-gray-400 mb-10 max-w-2xl mx-auto">
                    Build modern web applications with our complete fullstack solutions. From frontend to backend, we've got you covered.
                </p>
                <div class="flex justify-center gap-4">
                    <a href="/services" class="px-8 py-3 bg-primary-600 hover:bg-primary-500 rounded-lg font-medium transition-colors">
                        Our Services
                    </a>
                    <a href="/contact" class="px-8 py-3 border border-gray-700 hover:border-gray-600 rounded-lg font-medium transition-colors">
                        Contact Us
                    </a>
                </div>
            </div>
        </section>

        <section class="features mb-20">
            <h2 class="text-3xl font-bold mb-12 text-center">Why Choose Us</h2>
            <div class="grid md:grid-cols-3 gap-8">
                <div class="feature-card p-6 rounded-xl bg-gray-800 hover:bg-gray-700 transition-colors">
                    <div class="w-12 h-12 rounded-lg bg-primary-500/20 flex items-center justify-center mb-4">
                        <i data-feather="code" class="text-primary-500"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-3">Modern Tech Stack</h3>
                    <p class="text-gray-400">We use the latest technologies like React, Node.js, and modern databases to build fast, scalable applications.</p>
                </div>
                <div class="feature-card p-6 rounded-xl bg-gray-800 hover:bg-gray-700 transition-colors">
                    <div class="w-12 h-12 rounded-lg bg-secondary-500/20 flex items-center justify-center mb-4">
                        <i data-feather="layers" class="text-secondary-500"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-3">Fullstack Solutions</h3>
                    <p class="text-gray-400">From frontend UI to backend APIs and databases - we handle everything in one seamless package.</p>
                </div>
                <div class="feature-card p-6 rounded-xl bg-gray-800 hover:bg-gray-700 transition-colors">
                    <div class="w-12 h-12 rounded-lg bg-primary-500/20 flex items-center justify-center mb-4">
                        <i data-feather="shield" class="text-primary-500"></i>
                    </div>
                    <h3 class="text-xl font-semibold mb-3">Security Focused</h3>
                    <p class="text-gray-400">We implement best security practices to protect your data and users from modern threats.</p>
                </div>
            </div>
        </section>
    </main>

    <custom-footer></custom-footer>

    <script src="script.js"></script>
    <script>
        feather.replace();
    </script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>