-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
626 lines (551 loc) · 25.7 KB
/
index.html
File metadata and controls
626 lines (551 loc) · 25.7 KB
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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TheGreatTech | Affordable Web Solutions</title>
<meta name="description"
content="Professional and affordable web development, mobile apps, and cloud solutions for your business.">
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<!-- Favicon -->
<link rel="icon" type="image/svg+xml" href="assets/images/greattech_logo.svg">
<!-- Bootstrap 5 -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AOS Animation -->
<!-- this causing issue while reponsive -->
<!-- <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> -->
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/main.css">
<link rel="stylesheet" href="assets/css/animations.css">
<script>
AOS.refresh();
</script>
</head>
<body>
<!-- <style>
#palestine-fullscreen {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100vw;
background: #000;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
z-index: 999999;
animation: fadeOut 1s ease-in-out 2s forwards;
font-family: sans-serif;
text-align: center;
}
#palestine-fullscreen img {
height: 50%;
margin-bottom: 20px;
}
#palestine-fullscreen .text {
font-size: 2rem;
font-weight: bold;
}
@keyframes fadeOut {
to {
opacity: 0;
visibility: hidden;
}
}
#palestine-topbanner {
/* position: fixed; */
top: 0;
left: 0;
width: 100%;
background: #000;
text-align: center;
padding: 10px 0;
z-index: 9999;
color: white;
font-family: Arial, sans-serif;
}
#palestine-topbanner img {
height: 50px;
}
#palestine-topbanner p {
margin: 5px 0 0;
font-size: 16px;
font-weight: bold;
color: #fff;
}
</style>
<div id="palestine-fullscreen">
<img src="palestine.gif" alt="Palestine Flag">
<div class="text">Free Palestine</div>
</div>
<script>
setTimeout(() => {
const loader = document.getElementById('palestine-loader');
if (loader) loader.remove();
}, 2000); // 5s display + 1s fade out
</script>
-->
<!-- <style>
#palestine-flag-bar {
position: fixed;
top: 30%;
left: 0%;
width: 100%;
display: flex;
justify-content: center;
background: transparent;
z-index: 99999;
padding: 10px 0;
animation: fadeOut 1s ease-in-out 5s forwards;
}
#palestine-flag-bar img {
height:100%;
}
@keyframes fadeOut {
to {
opacity: 0;
visibility: hidden;
}
}
</style>
<div id="palestine-flag-bar">
<img src="palestine.gif" alt="Palestine Flag">
</div> -->
<!-- Preloader -->
<div class="preloader">
<div class="loader">
<img src="assets/images/greattech_logo.svg" alt="TheGreatTech Logo">
<div class="loading-bar"></div>
</div>
</div>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="assets/images/greattech_logo_white.svg" alt="TheGreatTech Logo" height="30">
<!-- <span>TheGreatTech</span> -->
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item"><a class="nav-link active" href="index.html">Home</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="servicesDropdown" data-bs-toggle="dropdown"
aria-expanded="false">Services<i class="fas fa-chevron-down small ms-1 "></i></a>
<div class="dropdown-menu ">
<a class="dropdown-item" href="services.html#web">Web Development</a>
<a class="dropdown-item" href="services.html#mobile">Mobile Apps</a>
<a class="dropdown-item" href="services.html#cloud">Cloud Solutions</a>
<a class="dropdown-item" href="services.html#ai">AI Integration</a>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="portfolio.html">Portfolio</a></li>
<li class="nav-item"><a class="nav-link" href="blog.html">Blog</a></li>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact</a></li>
<li class="nav-item"><a class="nav-link" href="careers.html">Careers</a></li>
<li class="nav-item"><a class="nav-link btn btn-primary" href="careers.html">We're Hiring!</a></li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<header class="hero">
<div class="hero-overlay"></div>
<div class="container" id="top">
<div class="row align-items-center">
<div class="col-lg-6" data-aos="fade-right">
<h1>Affordable Digital Solutions For Your Business</h1>
<p class="lead">We create stunning, high-performance websites and applications that won't break your
budget.</p>
<div class="hero-buttons">
<a href="services.html" class="btn btn-primary btn-lg">Our Services</a>
<a href="portfolio.html" class="btn btn-outline-light btn-lg">View Portfolio</a>
</div>
</div>
<div class="col-lg-6" data-aos="fade-left">
<img src="assets/images/intro-img.svg" alt="Digital world animation" class="img-fluid">
</div>
</div>
</div>
<div class="scroll-down">
<a href="#services"><i class="fas fa-chevron-down"></i></a>
</div>
</header>
<!-- Services Preview Section -->
<section id="services" class="section services-preview">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Our Core Services</h2>
<p>We offer comprehensive digital solutions tailored to your business needs</p>
</div>
<div class="row" id="services-container">
<!-- Services loaded via AJAX from services.json -->
</div>
<div class="text-center mt-5" data-aos="fade-up">
<a href="services.html" class="btn btn-outline-primary">View All Services</a>
</div>
</div>
</section>
<!-- About Us Section -->
<section class="section about-us ">
<!-- bg-light TAG AFTER ABOUT-US-->
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6" data-aos="fade-right">
<img src="assets/images/about-extra-2.svg" alt="Our team working" class="img-fluid rounded">
</div>
<div class="col-lg-6" data-aos="fade-left">
<div class="section-header">
<h2>Why Choose TheGreatTech?</h2>
</div>
<p>Founded in 2023, TheGreatTech has been helping businesses of all sizes establish their online
presence with affordable, high-quality solutions.</p>
<ul class="feature-list">
<li><i class="fas fa-check-circle"></i> 10+ satisfied clients</li>
<li><i class="fas fa-check-circle"></i> 5-star rated development team</li>
<li><i class="fas fa-check-circle"></i> Budget-friendly pricing</li>
<li><i class="fas fa-check-circle"></i> Ongoing support & maintenance</li>
<li><i class="fas fa-check-circle"></i> Cutting-edge technologies</li>
</ul>
<a href="about.html" class="btn btn-primary">Learn More About Us</a>
</div>
</div>
</div>
</section>
<!-- Portfolio Preview -->
<section class="section portfolio-preview">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Our Recent Work</h2>
<p>Check out some of our successful projects</p>
</div>
<div class="row portfolio-grid">
<!-- Portfolio items would be loaded here -->
<div class="col-md-4 portfolio-item" data-aos="zoom-in">
<div class="portfolio-card">
<img src="https://th.bing.com/th/id/OIP.xRkuy75CfClsQG7o6yPJpwHaEo?w=750&h=469&rs=1&pid=ImgDetMain"
alt="Project 1" class="img-fluid">
<div class="portfolio-overlay">
<h3>E-Commerce Platform</h3>
<p>Fully customized online store with payment integration</p>
<a href="portfolio.html#project1" class="btn btn-sm btn-light">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 portfolio-item" data-aos="zoom-in" data-aos-delay="100">
<div class="portfolio-card">
<img src="assets/images/mobilephoto.avif" alt="Project 2" class="img-fluid">
<div class="portfolio-overlay">
<h3>Mobile Apps</h3>
<p>Secure application for iOS and Android</p>
<a href="portfolio.html#project2" class="btn btn-sm btn-light">View Details</a>
</div>
</div>
</div>
<div class="col-md-4 portfolio-item" data-aos="zoom-in" data-aos-delay="200">
<div class="portfolio-card">
<img src="assets/images/portfolio/web3.jpg" alt="Project 3" class="img-fluid">
<div class="portfolio-overlay">
<h3>Corporate Website</h3>
<p>Modern responsive design with CMS integration</p>
<a href="portfolio.html#project3" class="btn btn-sm btn-light">View Details</a>
</div>
</div>
</div>
</div>
<div class="text-center mt-4" data-aos="fade-up">
<a href="portfolio.html" class="btn btn-primary">View Full Portfolio</a>
</div>
</div>
</section>
<!-- Testimonials -->
<section class="section testimonials text-white">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>What Our Clients Say</h2>
<p>Don't just take our word for it - hear from our satisfied customers</p>
</div>
<div class="row" id="testimonials-container">
<!-- Testimonials loaded via AJAX from testimonials.json -->
</div>
</div>
</section>
<!-- Technology Stack -->
<section class="section tech-stack">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Our Technology Stack</h2>
<p>We use the latest technologies to deliver top-notch solutions</p>
</div>
<div class="tech-grid">
<div class="tech-item" data-aos="zoom-in" data-aos-delay="250">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/php/php-original.svg" alt="AWS">
<span>PHP</span>
</div>
<div class="tech-item" data-aos="zoom-in" data-aos-delay="300">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/flutter/flutter-original.svg"
alt="Flutter">
<span>Flutter</span>
</div>
<div class="tech-item" data-aos="zoom-in" data-aos-delay="350">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/firebase/firebase-plain.svg"
alt="Firebase">
<span>Firebase</span>
</div>
<div class="tech-item" data-aos="zoom-in">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/react/react-original.svg" alt="React">
<span>React</span>
</div>
<div class="tech-item" data-aos="zoom-in" data-aos-delay="50">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/nodejs/nodejs-original.svg"
alt="Node.js">
<span>Node.js</span>
</div>
<div class="tech-item" data-aos="zoom-in" data-aos-delay="100">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/python/python-original.svg"
alt="Python">
<span>Python</span>
</div>
<div class="tech-item" data-aos="zoom-in" data-aos-delay="150">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/django/django-plain.svg" alt="Django">
<span>Django</span>
</div>
<div class="tech-item" data-aos="zoom-in" data-aos-delay="200">
<img src="https://cdn.jsdelivr.net/gh/devicons/devicon/icons/angularjs/angularjs-original.svg"
alt="Angular">
<span>Angular</span>
</div>
</div>
</div>
</section>
<!-- CTA Section -->
<section class="section cta">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-8" data-aos="fade-right">
<h2>Ready to Transform Your Business?</h2>
<p class="mb-0">Get started with a free consultation and quote for your project.</p>
</div>
<div class="col-lg-4 text-lg-end" data-aos="fade-left">
<a href="contact.html#quote" class="btn btn-light btn-lg">Get Free Quote</a>
</div>
</div>
</div>
</section>
<!-- Blog Preview -->
<section class="section blog-preview ">
<div class="container">
<div class="section-header" data-aos="fade-up">
<h2>Latest From Our Blog</h2>
<p>Insights, tips and industry news</p>
</div>
<div class="row" id="blog-preview-container">
<!-- Blog posts loaded via AJAX from blog-posts.json -->
</div>
<div class="text-center mt-4" data-aos="fade-up">
<a href="blog.html" class="btn btn-outline-primary">View All Articles</a>
</div>
</div>
</section>
<!-- Newsletter -->
<!-- Newsletter Section -->
<section class="section newsletter">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-8 text-center" data-aos="zoom-in">
<h2 class="dark-mode:text-white">Stay Updated</h2>
<p class="dark-mode:text-gray-300">Subscribe to our newsletter for the latest updates, tips, and
exclusive offers.</p>
<form id="newsletter-form" class="newsletter-form dark-mode:bg-[#121212]">
<div class="input-group">
<input type="email" id="email"
class="form-control placeholder-gray-500 dark:placeholder-gray-300 dark-mode:text-white"
placeholder="Your email address" required>
<button id="subsc" class="btn btn-primary" type="submit">Subscribe</button>
</div>
<div class="form-text dark-mode:text-gray-400">We respect your privacy. Unsubscribe at any time.
</div>
<!-- Hidden CAPTCHA until needed -->
<div id="captcha-container" class="mt-3" style="display: none;">
<div class="g-recaptcha d-flex justify-content-center"
data-sitekey="6LcM1NorAAAAAEiULaf4CB2FHHjtrxFhcMx44lT6"></div>
</div>
<!-- Loading indicator -->
<div id="loading" class="mt-2" style="display: none;">
<div class="spinner-border text-primary" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
<!-- Theme-aware message container -->
<div id="message"
class="mt-3 alert dark-mode:bg-[#1e1e1e] dark-mode:shadow-[0_5px_15px_rgba(0,0,0,0.2)]"
style="display: none;"></div>
</form>
</div>
</div>
</div>
</section>
<div id="palestine-topbanner">
<img src="https://github.com/maqsoodhussain/maqsoodhussain/blob/main/palestine.gif?raw=true"
alt="Palestine Flag">
<p>Free Palestine</p>
</div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-4 footer-about">
<img src="assets/images/greattech_logo_white.svg" alt="TheGreatTech Logo" height="40">
<p>Providing affordable, high-quality digital solutions since 2023. Helping businesses establish and
grow their online presence.</p>
<div class="social-links">
<!-- <a href="https://wa.me/917889528326"><i class="fab fa-facebook-f"></i></a> -->
<a href="https://wa.me/917889528326"><i class="fab fa-whatsapp"></i></a>
<!-- <a href="https://wa.me/917889528326"><i class="fab fa-linkedin-in"></i></a> -->
<!-- <a href="https://wa.me/917889528326"><i class="fab fa-instagram"></i></a> -->
<a href="https://github.com/TheGreatTech"><i class="fab fa-github"></i></a>
</div>
</div>
<div class="col-lg-2 footer-links">
<h3>Quick Links</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="careers.html">Careers</a></li>
</ul>
</div>
<div class="col-lg-3 footer-links">
<h3>Services</h3>
<ul>
<li><a href="services.html#web">Web Development</a></li>
<li><a href="services.html#mobile">Mobile Applications</a></li>
<li><a href="services.html#cloud">Cloud Solutions</a></li>
<li><a href="services.html#ai">AI Integration</a></li>
<li><a href="services.html#support">Support & Maintenance</a></li>
</ul>
</div>
<div class="col-lg-3 footer-contact">
<h3>Contact Us</h3>
<ul>
<li><i class="fas fa-map-marker-alt"></i> BEERWAH BUDGAM J&K</li>
<li><i class="fas fa-phone"></i> +91 7889528326</li>
<li><i class="fas fa-envelope"></i> thegreattechofficial@gmail.com</li>
</ul>
<a href="contact.html" class="btn btn-outline-light">Contact</a>
</div>
</div>
<hr>
<div class="footer-bottom">
<div class="row">
<div class="col-md-6">
<p>© 2023 TheGreatTech. All rights reserved.</p>
</div>
<div class="col-md-6 text-md-end">
<a href="privacy.html">Privacy Policy</a> |
<a href="terms.html">Terms of Service</a> |
<a href="cookies.html">Cookie Policy</a>
</div>
</div>
</div>
</div>
</footer>
<!-- Back to Top -->
<a href="#top" class="back-to-top up"><i class="fas fa-arrow-up"></i></a>
<script src="assets/js/newslatter_handler.js"></script>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="assets/js/main.js"></script>
<script src="assets/js/newslatter_handler.js"></script>
<script src="assets/js/blog-loader.js"></script>
<script>
// Initialize AOS animation
AOS.init({
duration: 100,
easing: 'ease-in-out',
once: true
});
// Load services data
$(document).ready(function () {
$.getJSON('data/ser.json', function (data) {
let servicesHtml = '';
data.services.slice(0, 3).forEach(service => {
servicesHtml += `
<div class="col-md-4" data-aos="fade-up" data-aos-delay="${service.id * 100}">
<div class="service-card">
<div class="service-icon">
<i class="${service.icon}"></i>
</div>
<h3>${service.title}</h3>
<p>${service.description}</p>
<a href="services.html#${service.id}" class="read-more">Learn more <i class="fas fa-arrow-right"></i></a>
</div>
</div>
`;
});
$('#services-container').html(servicesHtml);
});
// Load testimonials
$.getJSON('data/testimonials.json', function (data) {
let testimonialsHtml = '';
data.forEach(testimonial => {
testimonialsHtml += `
<div class="col-md-4" data-aos="fade-up" data-aos-delay="${testimonial.id * 100}">
<div class="testimonial-card">
<div class="testimonial-content">
<p>"${testimonial.content}"</p>
</div>
<div class="testimonial-author">
<img src="${testimonial.avatar}" alt="${testimonial.name}">
<div>
<h4>${testimonial.name}</h4>
<span>${testimonial.position}, ${testimonial.company}</span>
</div>
</div>
</div>
</div>
`;
AOS.refresh();
});
$('#testimonials-container').html(testimonialsHtml);
AOS.refresh();
});
// Load blog preview
$.getJSON('data/blog-posts.json', function (data) {
let blogHtml = '';
data.slice(0, 3).forEach(post => {
blogHtml += `
<div class="col-md-4" data-aos="fade-up" data-aos-delay="${post.id * 100}">
<div class="blog-card">
<div class="blog-image">
<img src="${post.image}" alt="${post.title}" class="img-fluid">
<div class="blog-date">${post.date}</div>
</div>
<div class="blog-content">
<h3><a href="blog-single.html?id=${post.id}">${post.title}</a></h3>
<p>${post.excerpt}</p>
<a href="blog-single.html?id=${post.id}" class="read-more">Read More <i class="fas fa-arrow-right"></i></a>
</div>
</div>
</div>
`;
AOS.refresh();
});
$('#blog-preview-container').html(blogHtml);
AOS.refresh();
});
});
</script>
</body>
</html>