File size: 9,902 Bytes
28ff8df
 
 
 
 
 
6302afe
28ff8df
 
6302afe
 
 
 
 
 
 
 
 
 
 
28ff8df
 
 
 
 
6302afe
 
28ff8df
 
 
6302afe
 
 
 
 
 
 
 
 
 
 
 
 
 
28ff8df
 
6302afe
 
28ff8df
 
6302afe
 
 
 
28ff8df
 
 
6302afe
28ff8df
 
6302afe
28ff8df
6302afe
28ff8df
 
 
21d279e
6302afe
 
21d279e
28ff8df
21d279e
28ff8df
 
 
 
 
 
6302afe
28ff8df
6302afe
 
28ff8df
 
 
6302afe
 
28ff8df
 
 
 
 
6302afe
 
 
 
 
 
 
 
 
 
28ff8df
 
 
 
 
 
6302afe
 
 
 
 
28ff8df
 
 
 
6302afe
28ff8df
 
6302afe
 
28ff8df
 
6302afe
28ff8df
21d279e
6302afe
 
21d279e
 
28ff8df
 
6302afe
28ff8df
6302afe
 
 
 
28ff8df
 
 
6302afe
28ff8df
6302afe
 
 
 
28ff8df
 
 
6302afe
28ff8df
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>HelloZed IT - Innovative Tech Solutions</title>
    <script src="https://cdn.tailwindcss.com"></script>
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
    <script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
    <script>
        tailwind.config = {
            theme: {
                extend: {
                    backdropBlur: {
                        xs: '2px',
                    }
                }
            }
        }
    </script>
    <style>
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            overflow-x: hidden;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.18);
        }
        
        .hero-gradient {
            background: linear-gradient(135deg, rgba(79, 70, 229, 0.8) 0%, rgba(124, 58, 237, 0.8) 100%);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .pulse-animation {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(79, 70, 229, 0); }
            100% { box-shadow: 0 0 0 0 rgba(79, 70, 229, 0); }
        }
    </style>
</head>
<body class="bg-gradient-to-br from-indigo-500 via-purple-500 to-pink-500">
    <div id="app">
        <!-- Navigation -->
        <nav class="py-4 px-6 sticky top-0 z-50 glass-effect">
            <div class="max-w-6xl mx-auto flex justify-between items-center">
                <div class="text-2xl font-bold text-white">
                    <i class="fas fa-robot mr-2"></i>HelloZed
                </div>
                <div class="hidden md:flex space-x-8">
                    <a href="index.html" class="text-white hover:text-indigo-200 transition">Home</a>
                    <a href="#" class="text-white hover:text-indigo-200 transition">Services</a>
                    <a href="#" class="text-white hover:text-indigo-200 transition">About</a>
                    <a href="contact.html" class="text-white hover:text-indigo-200 transition">Contact</a>
                </div>
<button class="md:hidden text-white">
                    <i class="fas fa-bars text-2xl"></i>
                </button>
            </div>
        </nav>

        <!-- Hero Section -->
        <section class="py-20 hero-gradient">
            <div class="max-w-6xl mx-auto px-6 text-center">
                <h1 class="text-4xl md:text-6xl font-bold mb-6 text-white">Innovative Tech Solutions</h1>
                <p class="text-xl md:text-2xl mb-8 max-w-3xl mx-auto text-indigo-100">
                    Transforming your ideas into cutting-edge digital experiences with HelloZed IT.
                </p>
                <div class="flex flex-col sm:flex-row justify-center gap-4">
                    <button class="bg-white text-indigo-600 px-8 py-3 rounded-full font-medium hover:bg-indigo-50 transition transform hover:scale-105 pulse-animation">Get Started</button>
                    <button class="glass-effect text-white px-8 py-3 rounded-full font-medium hover:bg-white/20 transition">Learn More</button>
                </div>
            </div>
        </section>

        <!-- Services Section -->
        <section class="py-20">
            <div class="max-w-6xl mx-auto px-6">
                <h2 class="text-3xl font-bold text-center mb-12 text-white">Our Services</h2>
                <div class="grid md:grid-cols-3 gap-8">
                    <div v-for="service in services" :key="service.title" class="glass-effect p-8 rounded-xl service-card transition duration-300">
                        <div class="text-white text-4xl mb-4">
                            <i :class="service.icon"></i>
                        </div>
                        <h3 class="text-xl font-bold mb-3 text-white">{{ service.title }}</h3>
                        <p class="text-indigo-100">{{ service.description }}</p>
                    </div>
                </div>
            </div>
        </section>

        <!-- CTA Section -->
        <section class="py-20">
            <div class="max-w-4xl mx-auto px-6 text-center glass-effect rounded-2xl mx-4">
                <h2 class="text-3xl font-bold mb-6 text-white">Ready to Transform Your Business?</h2>
                <p class="text-xl mb-8 text-indigo-100">Let's build something amazing together with HelloZed IT solutions.</p>
                <button class="bg-white text-indigo-600 px-8 py-3 rounded-full font-medium hover:bg-indigo-50 transition transform hover:scale-105 pulse-animation">Contact Us</button>
            </div>
        </section>

        <!-- Footer -->
        <footer class="py-12 glass-effect mt-20">
            <div class="max-w-6xl mx-auto px-6 grid md:grid-cols-4 gap-8">
                <div>
                    <h3 class="text-xl font-bold mb-4 text-white">HelloZed</h3>
                    <p class="text-indigo-100">Innovative technology solutions for modern businesses.</p>
                </div>
                <div>
                    <h4 class="font-bold mb-4 text-white">Quick Links</h4>
                    <ul class="space-y-2">
                        <li><a href="index.html" class="text-indigo-100 hover:text-white transition">Home</a></li>
                        <li><a href="#" class="text-indigo-100 hover:text-white transition">Services</a></li>
                        <li><a href="#" class="text-indigo-100 hover:text-white transition">About</a></li>
                        <li><a href="contact.html" class="text-indigo-100 hover:text-white transition">Contact</a></li>
</ul>
                </div>
                <div>
                    <h4 class="font-bold mb-4 text-white">Services</h4>
                    <ul class="space-y-2">
                        <li><a href="#" class="text-indigo-100 hover:text-white transition">Web Development</a></li>
                        <li><a href="#" class="text-indigo-100 hover:text-white transition">Mobile Apps</a></li>
                        <li><a href="#" class="text-indigo-100 hover:text-white transition">Cloud Solutions</a></li>
                        <li><a href="#" class="text-indigo-100 hover:text-white transition">AI & ML</a></li>
                    </ul>
                </div>
                <div>
                    <h4 class="font-bold mb-4 text-white">Connect</h4>
                    <div class="flex space-x-4">
                        <a href="#" class="text-white text-2xl hover:text-indigo-200 transition"><i class="fab fa-twitter"></i></a>
                        <a href="#" class="text-white text-2xl hover:text-indigo-200 transition"><i class="fab fa-linkedin"></i></a>
                        <a href="#" class="text-white text-2xl hover:text-indigo-200 transition"><i class="fab fa-github"></i></a>
                        <a href="#" class="text-white text-2xl hover:text-indigo-200 transition"><i class="fab fa-instagram"></i></a>
                    </div>
                </div>
            </div>
            <div class="max-w-6xl mx-auto px-6 mt-8 pt-8 border-t border-white/20 text-center text-indigo-100">
                <p>&copy; 2023 HelloZed IT. All rights reserved.</p>
            </div>
        </footer>
    </div>

    <script>
        const { createApp } = Vue;

        createApp({
            data() {
                return {
                    services: [
                        {
                            icon: 'fas fa-code',
                            title: 'Web Development',
                            description: 'Custom websites and web applications tailored to your business needs.'
                        },
                        {
                            icon: 'fas fa-mobile-alt',
                            title: 'Mobile Apps',
                            description: 'iOS and Android applications built with the latest technologies.'
                        },
                        {
                            icon: 'fas fa-cloud',
                            title: 'Cloud Solutions',
                            description: 'Scalable cloud infrastructure and services for your growing business.'
                        },
                        {
                            icon: 'fas fa-robot',
                            title: 'AI & ML',
                            description: 'Artificial Intelligence and Machine Learning solutions to automate processes.'
                        },
                        {
                            icon: 'fas fa-database',
                            title: 'Data Analytics',
                            description: 'Turn your data into actionable insights with our analytics solutions.'
                        },
                        {
                            icon: 'fas fa-shield-alt',
                            title: 'Cyber Security',
                            description: 'Protect your business with our comprehensive security solutions.'
                        }
                    ]
                }
            }
        }).mount('#app');
    </script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>