Create an remote IT Support Multiple page Website for Users - Initial Deployment
Browse files- README.md +7 -5
- about.html +139 -0
- index.html +417 -18
- prompts.txt +1 -0
- services.html +567 -0
README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
-
emoji:
|
| 4 |
-
colorFrom:
|
| 5 |
-
colorTo:
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 1 |
---
|
| 2 |
+
title: it
|
| 3 |
+
emoji: 🐳
|
| 4 |
+
colorFrom: gray
|
| 5 |
+
colorTo: yellow
|
| 6 |
sdk: static
|
| 7 |
pinned: false
|
| 8 |
+
tags:
|
| 9 |
+
- deepsite
|
| 10 |
---
|
| 11 |
|
| 12 |
+
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
about.html
ADDED
|
@@ -0,0 +1,139 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>About Us | TechConnect</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
<style>
|
| 14 |
+
.team-card:hover {
|
| 15 |
+
transform: translateY(-5px);
|
| 16 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
|
| 17 |
+
}
|
| 18 |
+
.btn-hover:hover {
|
| 19 |
+
transform: translateY(-2px);
|
| 20 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
| 21 |
+
}
|
| 22 |
+
</style>
|
| 23 |
+
</head>
|
| 24 |
+
<body class="font-sans antialiased text-gray-800">
|
| 25 |
+
<!-- Navigation -->
|
| 26 |
+
<nav class="bg-white shadow-sm fixed w-full z-10">
|
| 27 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 28 |
+
<div class="flex justify-between h-16">
|
| 29 |
+
<div class="flex items-center">
|
| 30 |
+
<div class="flex-shrink-0 flex items-center">
|
| 31 |
+
<i data-feather="cpu" class="text-blue-600 h-8 w-8"></i>
|
| 32 |
+
<span class="ml-2 text-xl font-bold text-gray-900">TechConnect</span>
|
| 33 |
+
</div>
|
| 34 |
+
</div>
|
| 35 |
+
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
|
| 36 |
+
<a href="index.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Home</a>
|
| 37 |
+
<a href="services.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Services</a>
|
| 38 |
+
<a href="about.html" class="text-blue-600 border-blue-500 px-3 py-2 text-sm font-medium">About</a>
|
| 39 |
+
<a href="contact.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a>
|
| 40 |
+
<a href="login.html" class="bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-blue-700 transition duration-300 btn-hover">Client Login</a>
|
| 41 |
+
</div>
|
| 42 |
+
<div class="-mr-2 flex items-center md:hidden">
|
| 43 |
+
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none">
|
| 44 |
+
<i data-feather="menu"></i>
|
| 45 |
+
</button>
|
| 46 |
+
</div>
|
| 47 |
+
</div>
|
| 48 |
+
</div>
|
| 49 |
+
<!-- Mobile menu -->
|
| 50 |
+
<div class="hidden md:hidden" id="mobile-menu">
|
| 51 |
+
<div class="pt-2 pb-3 space-y-1">
|
| 52 |
+
<a href="index.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Home</a>
|
| 53 |
+
<a href="services.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Services</a>
|
| 54 |
+
<a href="about.html" class="bg-blue-50 text-blue-600 block px-3 py-2 rounded-md text-base font-medium">About</a>
|
| 55 |
+
<a href="contact.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Contact</a>
|
| 56 |
+
<a href="login.html" class="bg-blue-600 text-white block px-3 py-2 rounded-md text-base font-medium hover:bg-blue-700">Client Login</a>
|
| 57 |
+
</div>
|
| 58 |
+
</div>
|
| 59 |
+
</nav>
|
| 60 |
+
|
| 61 |
+
<!-- Page Header -->
|
| 62 |
+
<div class="bg-blue-700 pt-24 pb-20">
|
| 63 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 64 |
+
<h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl" data-aos="fade-up">
|
| 65 |
+
About TechConnect
|
| 66 |
+
</h1>
|
| 67 |
+
<p class="mt-6 max-w-3xl mx-auto text-xl text-blue-100" data-aos="fade-up" data-aos-delay="100">
|
| 68 |
+
Our mission is to deliver exceptional IT support that empowers businesses to thrive in the digital age.
|
| 69 |
+
</p>
|
| 70 |
+
</div>
|
| 71 |
+
</div>
|
| 72 |
+
|
| 73 |
+
<!-- Our Story -->
|
| 74 |
+
<div class="py-16 bg-white overflow-hidden">
|
| 75 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 76 |
+
<div class="lg:grid lg:grid-cols-2 lg:gap-8 lg:items-center">
|
| 77 |
+
<div data-aos="fade-right">
|
| 78 |
+
<h2 class="text-3xl font-extrabold text-gray-900 tracking-tight sm:text-4xl">
|
| 79 |
+
Our Story
|
| 80 |
+
</h2>
|
| 81 |
+
<p class="mt-3 text-lg text-gray-500">
|
| 82 |
+
Founded in 2010, TechConnect began as a small team of IT professionals passionate about solving technology challenges for local businesses. What started as a modest operation has grown into a leading provider of remote IT support services with clients across the country.
|
| 83 |
+
</p>
|
| 84 |
+
<p class="mt-3 text-lg text-gray-500">
|
| 85 |
+
Our growth has been fueled by our commitment to customer satisfaction and our ability to adapt to the rapidly changing technology landscape. We've consistently invested in our team and tools to ensure we can deliver the best possible service to our clients.
|
| 86 |
+
</p>
|
| 87 |
+
<div class="mt-8 sm:flex">
|
| 88 |
+
<div class="rounded-md shadow">
|
| 89 |
+
<a href="contact.html" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-600 hover:bg-blue-700 md:py-4 md:text-lg md:px-10 btn-hover">
|
| 90 |
+
Contact Us
|
| 91 |
+
</a>
|
| 92 |
+
</div>
|
| 93 |
+
</div>
|
| 94 |
+
</div>
|
| 95 |
+
<div class="mt-12 relative lg:mt-0" data-aos="fade-left">
|
| 96 |
+
<div class="relative mx-auto w-full rounded-lg shadow-lg overflow-hidden">
|
| 97 |
+
<img class="w-full" src="http://static.photos/office/1024x576/1" alt="Our office">
|
| 98 |
+
</div>
|
| 99 |
+
</div>
|
| 100 |
+
</div>
|
| 101 |
+
</div>
|
| 102 |
+
</div>
|
| 103 |
+
|
| 104 |
+
<!-- Mission & Values -->
|
| 105 |
+
<div class="bg-gray-50 py-16">
|
| 106 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 107 |
+
<div class="lg:text-center">
|
| 108 |
+
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Our Approach</h2>
|
| 109 |
+
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
|
| 110 |
+
Mission & Values
|
| 111 |
+
</p>
|
| 112 |
+
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
|
| 113 |
+
The principles that guide everything we do
|
| 114 |
+
</p>
|
| 115 |
+
</div>
|
| 116 |
+
|
| 117 |
+
<div class="mt-10">
|
| 118 |
+
<div class="grid grid-cols-1 gap-10 sm:grid-cols-2 lg:grid-cols-3">
|
| 119 |
+
<div class="bg-white overflow-hidden shadow rounded-lg" data-aos="fade-up">
|
| 120 |
+
<div class="px-4 py-5 sm:p-6">
|
| 121 |
+
<div class="flex items-center">
|
| 122 |
+
<div class="flex-shrink-0 bg-blue-500 rounded-md p-3">
|
| 123 |
+
<i data-feather="target" class="h-6 w-6 text-white"></i>
|
| 124 |
+
</div>
|
| 125 |
+
<div class="ml-5 w-0 flex-1">
|
| 126 |
+
<h3 class="text-lg font-medium text-gray-900">Our Mission</h3>
|
| 127 |
+
</div>
|
| 128 |
+
</div>
|
| 129 |
+
<div class="mt-4">
|
| 130 |
+
<p class="text-base text-gray-500">
|
| 131 |
+
To provide reliable, innovative IT solutions that enable businesses to operate efficiently and securely, allowing them to focus on their core objectives.
|
| 132 |
+
</p>
|
| 133 |
+
</div>
|
| 134 |
+
</div>
|
| 135 |
+
</div>
|
| 136 |
+
|
| 137 |
+
<div class="bg-white overflow-hidden shadow rounded-lg" data
|
| 138 |
+
</body>
|
| 139 |
+
</html>
|
index.html
CHANGED
|
@@ -1,19 +1,418 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
</html>
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>TechConnect | Remote IT Support Solutions</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
<style>
|
| 14 |
+
.hero-gradient {
|
| 15 |
+
background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
|
| 16 |
+
}
|
| 17 |
+
.btn-hover:hover {
|
| 18 |
+
transform: translateY(-2px);
|
| 19 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
| 20 |
+
}
|
| 21 |
+
.service-card:hover {
|
| 22 |
+
transform: translateY(-5px);
|
| 23 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
|
| 24 |
+
}
|
| 25 |
+
</style>
|
| 26 |
+
</head>
|
| 27 |
+
<body class="font-sans antialiased text-gray-800">
|
| 28 |
+
<!-- Navigation -->
|
| 29 |
+
<nav class="bg-white shadow-sm fixed w-full z-10">
|
| 30 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 31 |
+
<div class="flex justify-between h-16">
|
| 32 |
+
<div class="flex items-center">
|
| 33 |
+
<div class="flex-shrink-0 flex items-center">
|
| 34 |
+
<i data-feather="cpu" class="text-blue-600 h-8 w-8"></i>
|
| 35 |
+
<span class="ml-2 text-xl font-bold text-gray-900">TechConnect</span>
|
| 36 |
+
</div>
|
| 37 |
+
</div>
|
| 38 |
+
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
|
| 39 |
+
<a href="index.html" class="text-blue-600 border-blue-500 px-3 py-2 text-sm font-medium">Home</a>
|
| 40 |
+
<a href="services.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Services</a>
|
| 41 |
+
<a href="about.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">About</a>
|
| 42 |
+
<a href="contact.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a>
|
| 43 |
+
<a href="login.html" class="bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-blue-700 transition duration-300 btn-hover">Client Login</a>
|
| 44 |
+
</div>
|
| 45 |
+
<div class="-mr-2 flex items-center md:hidden">
|
| 46 |
+
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none">
|
| 47 |
+
<i data-feather="menu"></i>
|
| 48 |
+
</button>
|
| 49 |
+
</div>
|
| 50 |
+
</div>
|
| 51 |
+
</div>
|
| 52 |
+
<!-- Mobile menu -->
|
| 53 |
+
<div class="hidden md:hidden" id="mobile-menu">
|
| 54 |
+
<div class="pt-2 pb-3 space-y-1">
|
| 55 |
+
<a href="index.html" class="bg-blue-50 text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Home</a>
|
| 56 |
+
<a href="services.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Services</a>
|
| 57 |
+
<a href="about.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">About</a>
|
| 58 |
+
<a href="contact.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Contact</a>
|
| 59 |
+
<a href="login.html" class="bg-blue-600 text-white block px-3 py-2 rounded-md text-base font-medium hover:bg-blue-700">Client Login</a>
|
| 60 |
+
</div>
|
| 61 |
+
</div>
|
| 62 |
+
</nav>
|
| 63 |
+
|
| 64 |
+
<!-- Hero Section -->
|
| 65 |
+
<div class="hero-gradient pt-24 pb-32">
|
| 66 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 67 |
+
<div class="lg:grid lg:grid-cols-12 lg:gap-8">
|
| 68 |
+
<div class="sm:text-center md:max-w-2xl md:mx-auto lg:col-span-6 lg:text-left" data-aos="fade-right">
|
| 69 |
+
<h1 class="text-4xl tracking-tight font-extrabold text-white sm:text-5xl md:text-6xl">
|
| 70 |
+
<span class="block">Expert IT Support</span>
|
| 71 |
+
<span class="block text-blue-200">Anywhere, Anytime</span>
|
| 72 |
+
</h1>
|
| 73 |
+
<p class="mt-3 text-base text-blue-100 sm:mt-5 sm:text-lg sm:max-w-xl sm:mx-auto md:mt-5 md:text-xl lg:mx-0">
|
| 74 |
+
Our certified technicians provide fast, reliable remote IT support for businesses of all sizes. Available 24/7 to keep your operations running smoothly.
|
| 75 |
+
</p>
|
| 76 |
+
<div class="mt-8 sm:max-w-lg sm:mx-auto sm:text-center lg:text-left lg:mx-0">
|
| 77 |
+
<div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-3">
|
| 78 |
+
<a href="contact.html" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-blue-700 bg-white hover:bg-gray-50 md:py-4 md:text-lg md:px-10 btn-hover">
|
| 79 |
+
Get Started
|
| 80 |
+
</a>
|
| 81 |
+
<a href="services.html" class="w-full flex items-center justify-center px-8 py-3 border border-transparent text-base font-medium rounded-md text-white bg-blue-500 bg-opacity-60 hover:bg-opacity-70 md:py-4 md:text-lg md:px-10 btn-hover">
|
| 82 |
+
Our Services
|
| 83 |
+
</a>
|
| 84 |
+
</div>
|
| 85 |
+
</div>
|
| 86 |
+
</div>
|
| 87 |
+
<div class="mt-12 relative sm:max-w-lg sm:mx-auto lg:mt-0 lg:max-w-none lg:mx-0 lg:col-span-6 lg:flex lg:items-center" data-aos="fade-left">
|
| 88 |
+
<div class="relative mx-auto w-full rounded-lg shadow-lg lg:max-w-md">
|
| 89 |
+
<img class="w-full rounded-lg" src="http://static.photos/technology/1024x576/1" alt="IT support team">
|
| 90 |
+
</div>
|
| 91 |
+
</div>
|
| 92 |
+
</div>
|
| 93 |
+
</div>
|
| 94 |
+
</div>
|
| 95 |
+
|
| 96 |
+
<!-- Stats Section -->
|
| 97 |
+
<div class="bg-white py-16">
|
| 98 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 99 |
+
<div class="lg:text-center">
|
| 100 |
+
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Trusted by businesses worldwide</h2>
|
| 101 |
+
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
|
| 102 |
+
Why choose TechConnect?
|
| 103 |
+
</p>
|
| 104 |
+
</div>
|
| 105 |
+
<div class="mt-10">
|
| 106 |
+
<div class="grid grid-cols-1 gap-8 sm:grid-cols-2 lg:grid-cols-4">
|
| 107 |
+
<div class="pt-6" data-aos="fade-up" data-aos-delay="100">
|
| 108 |
+
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
|
| 109 |
+
<div class="-mt-6">
|
| 110 |
+
<div>
|
| 111 |
+
<span class="inline-flex items-center justify-center p-3 bg-blue-500 rounded-md shadow-lg">
|
| 112 |
+
<i data-feather="clock" class="h-6 w-6 text-white"></i>
|
| 113 |
+
</span>
|
| 114 |
+
</div>
|
| 115 |
+
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">24/7 Availability</h3>
|
| 116 |
+
<p class="mt-5 text-base text-gray-500">
|
| 117 |
+
Our team is available around the clock to resolve your IT issues whenever they arise.
|
| 118 |
+
</p>
|
| 119 |
+
</div>
|
| 120 |
+
</div>
|
| 121 |
+
</div>
|
| 122 |
+
<div class="pt-6" data-aos="fade-up" data-aos-delay="200">
|
| 123 |
+
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
|
| 124 |
+
<div class="-mt-6">
|
| 125 |
+
<div>
|
| 126 |
+
<span class="inline-flex items-center justify-center p-3 bg-blue-500 rounded-md shadow-lg">
|
| 127 |
+
<i data-feather="users" class="h-6 w-6 text-white"></i>
|
| 128 |
+
</span>
|
| 129 |
+
</div>
|
| 130 |
+
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Certified Experts</h3>
|
| 131 |
+
<p class="mt-5 text-base text-gray-500">
|
| 132 |
+
All our technicians are certified professionals with extensive experience in IT support.
|
| 133 |
+
</p>
|
| 134 |
+
</div>
|
| 135 |
+
</div>
|
| 136 |
+
</div>
|
| 137 |
+
<div class="pt-6" data-aos="fade-up" data-aos-delay="300">
|
| 138 |
+
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
|
| 139 |
+
<div class="-mt-6">
|
| 140 |
+
<div>
|
| 141 |
+
<span class="inline-flex items-center justify-center p-3 bg-blue-500 rounded-md shadow-lg">
|
| 142 |
+
<i data-feather="zap" class="h-6 w-6 text-white"></i>
|
| 143 |
+
</span>
|
| 144 |
+
</div>
|
| 145 |
+
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Fast Response</h3>
|
| 146 |
+
<p class="mt-5 text-base text-gray-500">
|
| 147 |
+
Average response time under 15 minutes for critical issues - we know time is money.
|
| 148 |
+
</p>
|
| 149 |
+
</div>
|
| 150 |
+
</div>
|
| 151 |
+
</div>
|
| 152 |
+
<div class="pt-6" data-aos="fade-up" data-aos-delay="400">
|
| 153 |
+
<div class="flow-root bg-gray-50 rounded-lg px-6 pb-8 h-full">
|
| 154 |
+
<div class="-mt-6">
|
| 155 |
+
<div>
|
| 156 |
+
<span class="inline-flex items-center justify-center p-3 bg-blue-500 rounded-md shadow-lg">
|
| 157 |
+
<i data-feather="shield" class="h-6 w-6 text-white"></i>
|
| 158 |
+
</span>
|
| 159 |
+
</div>
|
| 160 |
+
<h3 class="mt-8 text-lg font-medium text-gray-900 tracking-tight">Secure Solutions</h3>
|
| 161 |
+
<p class="mt-5 text-base text-gray-500">
|
| 162 |
+
Enterprise-grade security protocols to ensure your data remains protected at all times.
|
| 163 |
+
</p>
|
| 164 |
+
</div>
|
| 165 |
+
</div>
|
| 166 |
+
</div>
|
| 167 |
+
</div>
|
| 168 |
+
</div>
|
| 169 |
+
</div>
|
| 170 |
+
</div>
|
| 171 |
+
|
| 172 |
+
<!-- How It Works Section -->
|
| 173 |
+
<div class="bg-gray-50 py-16">
|
| 174 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 175 |
+
<div class="lg:text-center">
|
| 176 |
+
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Process</h2>
|
| 177 |
+
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
|
| 178 |
+
How our remote support works
|
| 179 |
+
</p>
|
| 180 |
+
</div>
|
| 181 |
+
<div class="mt-10">
|
| 182 |
+
<div class="relative">
|
| 183 |
+
<div class="hidden md:block absolute top-0 left-1/2 h-full border-l-2 border-gray-300 border-dashed"></div>
|
| 184 |
+
<div class="space-y-10 md:space-y-0 md:grid md:grid-cols-2 md:gap-x-8 md:gap-y-10">
|
| 185 |
+
<div class="relative" data-aos="fade-right">
|
| 186 |
+
<div class="flex items-center">
|
| 187 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 188 |
+
<span class="text-xl font-bold">1</span>
|
| 189 |
+
</div>
|
| 190 |
+
<h3 class="ml-5 text-lg leading-6 font-medium text-gray-900">Request Support</h3>
|
| 191 |
+
</div>
|
| 192 |
+
<p class="mt-2 ml-17 text-base text-gray-500">
|
| 193 |
+
Contact us via phone, email, or our client portal. Describe your issue and we'll connect you with the right specialist.
|
| 194 |
+
</p>
|
| 195 |
+
</div>
|
| 196 |
+
<div class="relative mt-10 md:mt-0" data-aos="fade-left" data-aos-delay="100">
|
| 197 |
+
<div class="flex items-center">
|
| 198 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 199 |
+
<span class="text-xl font-bold">2</span>
|
| 200 |
+
</div>
|
| 201 |
+
<h3 class="ml-5 text-lg leading-6 font-medium text-gray-900">Secure Connection</h3>
|
| 202 |
+
</div>
|
| 203 |
+
<p class="mt-2 ml-17 text-base text-gray-500">
|
| 204 |
+
Our technician will establish an encrypted remote connection to your system with your permission.
|
| 205 |
+
</p>
|
| 206 |
+
</div>
|
| 207 |
+
<div class="relative mt-10 md:mt-0" data-aos="fade-right" data-aos-delay="200">
|
| 208 |
+
<div class="flex items-center">
|
| 209 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 210 |
+
<span class="text-xl font-bold">3</span>
|
| 211 |
+
</div>
|
| 212 |
+
<h3 class="ml-5 text-lg leading-6 font-medium text-gray-900">Diagnose & Resolve</h3>
|
| 213 |
+
</div>
|
| 214 |
+
<p class="mt-2 ml-17 text-base text-gray-500">
|
| 215 |
+
The technician will diagnose the issue and implement the solution while keeping you informed.
|
| 216 |
+
</p>
|
| 217 |
+
</div>
|
| 218 |
+
<div class="relative mt-10 md:mt-0" data-aos="fade-left" data-aos-delay="300">
|
| 219 |
+
<div class="flex items-center">
|
| 220 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 221 |
+
<span class="text-xl font-bold">4</span>
|
| 222 |
+
</div>
|
| 223 |
+
<h3 class="ml-5 text-lg leading-6 font-medium text-gray-900">Follow Up</h3>
|
| 224 |
+
</div>
|
| 225 |
+
<p class="mt-2 ml-17 text-base text-gray-500">
|
| 226 |
+
We'll follow up to ensure the issue is resolved and provide documentation for your records.
|
| 227 |
+
</p>
|
| 228 |
+
</div>
|
| 229 |
+
</div>
|
| 230 |
+
</div>
|
| 231 |
+
</div>
|
| 232 |
+
</div>
|
| 233 |
+
</div>
|
| 234 |
+
|
| 235 |
+
<!-- Testimonials -->
|
| 236 |
+
<div class="bg-white py-16">
|
| 237 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 238 |
+
<div class="lg:text-center">
|
| 239 |
+
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Testimonials</h2>
|
| 240 |
+
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
|
| 241 |
+
What our clients say
|
| 242 |
+
</p>
|
| 243 |
+
</div>
|
| 244 |
+
<div class="mt-10 grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
|
| 245 |
+
<div class="bg-gray-50 p-6 rounded-lg" data-aos="fade-up">
|
| 246 |
+
<div class="flex items-center">
|
| 247 |
+
<div class="flex-shrink-0">
|
| 248 |
+
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/1" alt="Sarah Johnson">
|
| 249 |
+
</div>
|
| 250 |
+
<div class="ml-4">
|
| 251 |
+
<h3 class="text-lg font-medium text-gray-900">Sarah Johnson</h3>
|
| 252 |
+
<p class="text-blue-600">CEO, Digital Solutions Inc.</p>
|
| 253 |
+
</div>
|
| 254 |
+
</div>
|
| 255 |
+
<p class="mt-4 text-gray-600">
|
| 256 |
+
"TechConnect has been instrumental in keeping our operations running smoothly. Their 24/7 support means we never have downtime, and their team is incredibly knowledgeable."
|
| 257 |
+
</p>
|
| 258 |
+
<div class="mt-4 flex text-yellow-400">
|
| 259 |
+
<i data-feather="star" class="fill-current"></i>
|
| 260 |
+
<i data-feather="star" class="fill-current"></i>
|
| 261 |
+
<i data-feather="star" class="fill-current"></i>
|
| 262 |
+
<i data-feather="star" class="fill-current"></i>
|
| 263 |
+
<i data-feather="star" class="fill-current"></i>
|
| 264 |
+
</div>
|
| 265 |
+
</div>
|
| 266 |
+
<div class="bg-gray-50 p-6 rounded-lg" data-aos="fade-up" data-aos-delay="100">
|
| 267 |
+
<div class="flex items-center">
|
| 268 |
+
<div class="flex-shrink-0">
|
| 269 |
+
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/2" alt="Michael Chen">
|
| 270 |
+
</div>
|
| 271 |
+
<div class="ml-4">
|
| 272 |
+
<h3 class="text-lg font-medium text-gray-900">Michael Chen</h3>
|
| 273 |
+
<p class="text-blue-600">CTO, TechStart LLC</p>
|
| 274 |
+
</div>
|
| 275 |
+
</div>
|
| 276 |
+
<p class="mt-4 text-gray-600">
|
| 277 |
+
"The response times are unbelievable. We had a critical server issue at 2 AM, and a TechConnect technician was connected and working on it within 10 minutes of our call."
|
| 278 |
+
</p>
|
| 279 |
+
<div class="mt-4 flex text-yellow-400">
|
| 280 |
+
<i data-feather="star" class="fill-current"></i>
|
| 281 |
+
<i data-feather="star" class="fill-current"></i>
|
| 282 |
+
<i data-feather="star" class="fill-current"></i>
|
| 283 |
+
<i data-feather="star" class="fill-current"></i>
|
| 284 |
+
<i data-feather="star" class="fill-current"></i>
|
| 285 |
+
</div>
|
| 286 |
+
</div>
|
| 287 |
+
<div class="bg-gray-50 p-6 rounded-lg" data-aos="fade-up" data-aos-delay="200">
|
| 288 |
+
<div class="flex items-center">
|
| 289 |
+
<div class="flex-shrink-0">
|
| 290 |
+
<img class="h-12 w-12 rounded-full" src="http://static.photos/people/200x200/3" alt="Emily Rodriguez">
|
| 291 |
+
</div>
|
| 292 |
+
<div class="ml-4">
|
| 293 |
+
<h3 class="text-lg font-medium text-gray-900">Emily Rodriguez</h3>
|
| 294 |
+
<p class="text-blue-600">IT Director, RetailCorp</p>
|
| 295 |
+
</div>
|
| 296 |
+
</div>
|
| 297 |
+
<p class="mt-4 text-gray-600">
|
| 298 |
+
"We switched to TechConnect last year and our IT costs dropped by 30% while service quality improved. Their proactive monitoring has prevented countless potential issues."
|
| 299 |
+
</p>
|
| 300 |
+
<div class="mt-4 flex text-yellow-400">
|
| 301 |
+
<i data-feather="star" class="fill-current"></i>
|
| 302 |
+
<i data-feather="star" class="fill-current"></i>
|
| 303 |
+
<i data-feather="star" class="fill-current"></i>
|
| 304 |
+
<i data-feather="star" class="fill-current"></i>
|
| 305 |
+
<i data-feather="star" class="fill-current"></i>
|
| 306 |
+
</div>
|
| 307 |
+
</div>
|
| 308 |
+
</div>
|
| 309 |
+
</div>
|
| 310 |
+
</div>
|
| 311 |
+
|
| 312 |
+
<!-- CTA Section -->
|
| 313 |
+
<div class="bg-blue-700">
|
| 314 |
+
<div class="max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8">
|
| 315 |
+
<h2 class="text-3xl font-extrabold text-white sm:text-4xl" data-aos="fade-up">
|
| 316 |
+
<span class="block">Ready to experience better IT support?</span>
|
| 317 |
+
<span class="block text-blue-200">Get started today.</span>
|
| 318 |
+
</h2>
|
| 319 |
+
<p class="mt-4 text-lg leading-6 text-blue-100" data-aos="fade-up" data-aos-delay="100">
|
| 320 |
+
Join hundreds of businesses who trust TechConnect for their IT needs. No long-term contracts, just exceptional service.
|
| 321 |
+
</p>
|
| 322 |
+
<a href="contact.html" class="mt-8 w-full inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-blue-50 sm:w-auto btn-hover" data-aos="fade-up" data-aos-delay="200">
|
| 323 |
+
Contact Us Now
|
| 324 |
+
</a>
|
| 325 |
+
</div>
|
| 326 |
+
</div>
|
| 327 |
+
|
| 328 |
+
<!-- Footer -->
|
| 329 |
+
<footer class="bg-gray-900">
|
| 330 |
+
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
|
| 331 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
|
| 332 |
+
<div>
|
| 333 |
+
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
|
| 334 |
+
<ul class="mt-4 space-y-4">
|
| 335 |
+
<li><a href="about.html" class="text-base text-gray-300 hover:text-white">About</a></li>
|
| 336 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li>
|
| 337 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li>
|
| 338 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Press</a></li>
|
| 339 |
+
</ul>
|
| 340 |
+
</div>
|
| 341 |
+
<div>
|
| 342 |
+
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Services</h3>
|
| 343 |
+
<ul class="mt-4 space-y-4">
|
| 344 |
+
<li><a href="services.html" class="text-base text-gray-300 hover:text-white">IT Support</a></li>
|
| 345 |
+
<li><a href="services.html" class="text-base text-gray-300 hover:text-white">Network Security</a></li>
|
| 346 |
+
<li><a href="services.html" class="text-base text-gray-300 hover:text-white">Cloud Solutions</a></li>
|
| 347 |
+
<li><a href="services.html" class="text-base text-gray-300 hover:text-white">Data Backup</a></li>
|
| 348 |
+
</ul>
|
| 349 |
+
</div>
|
| 350 |
+
<div>
|
| 351 |
+
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Support</h3>
|
| 352 |
+
<ul class="mt-4 space-y-4">
|
| 353 |
+
<li><a href="contact.html" class="text-base text-gray-300 hover:text-white">Contact Us</a></li>
|
| 354 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Knowledge Base</a></li>
|
| 355 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Community</a></li>
|
| 356 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">System Status</a></li>
|
| 357 |
+
</ul>
|
| 358 |
+
</div>
|
| 359 |
+
<div>
|
| 360 |
+
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3>
|
| 361 |
+
<ul class="mt-4 space-y-4">
|
| 362 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a></li>
|
| 363 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Terms</a></li>
|
| 364 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Cookie Policy</a></li>
|
| 365 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">GDPR</a></li>
|
| 366 |
+
</ul>
|
| 367 |
+
</div>
|
| 368 |
+
</div>
|
| 369 |
+
<div class="mt-12 border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
|
| 370 |
+
<div class="flex space-x-6 md:order-2">
|
| 371 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 372 |
+
<i data-feather="twitter" class="h-6 w-6"></i>
|
| 373 |
+
</a>
|
| 374 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 375 |
+
<i data-feather="facebook" class="h-6 w-6"></i>
|
| 376 |
+
</a>
|
| 377 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 378 |
+
<i data-feather="instagram" class="h-6 w-6"></i>
|
| 379 |
+
</a>
|
| 380 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 381 |
+
<i data-feather="linkedin" class="h-6 w-6"></i>
|
| 382 |
+
</a>
|
| 383 |
+
</div>
|
| 384 |
+
<p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
|
| 385 |
+
© 2023 TechConnect. All rights reserved.
|
| 386 |
+
</p>
|
| 387 |
+
</div>
|
| 388 |
+
</div>
|
| 389 |
+
</footer>
|
| 390 |
+
|
| 391 |
+
<script>
|
| 392 |
+
// Mobile menu toggle
|
| 393 |
+
document.getElementById('mobile-menu-button').addEventListener('click', function() {
|
| 394 |
+
const menu = document.getElementById('mobile-menu');
|
| 395 |
+
menu.classList.toggle('hidden');
|
| 396 |
+
|
| 397 |
+
// Change icon based on menu state
|
| 398 |
+
const icon = this.querySelector('i');
|
| 399 |
+
if (menu.classList.contains('hidden')) {
|
| 400 |
+
icon.setAttribute('data-feather', 'menu');
|
| 401 |
+
} else {
|
| 402 |
+
icon.setAttribute('data-feather', 'x');
|
| 403 |
+
}
|
| 404 |
+
feather.replace();
|
| 405 |
+
});
|
| 406 |
+
|
| 407 |
+
// Initialize AOS animations
|
| 408 |
+
AOS.init({
|
| 409 |
+
duration: 800,
|
| 410 |
+
easing: 'ease-in-out',
|
| 411 |
+
once: true
|
| 412 |
+
});
|
| 413 |
+
|
| 414 |
+
// Initialize feather icons
|
| 415 |
+
feather.replace();
|
| 416 |
+
</script>
|
| 417 |
+
</body>
|
| 418 |
</html>
|
prompts.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
Create an remote IT Support Multiple page Website for Users
|
services.html
ADDED
|
@@ -0,0 +1,567 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
<head>
|
| 4 |
+
<meta charset="UTF-8">
|
| 5 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
| 6 |
+
<title>Our Services | TechConnect</title>
|
| 7 |
+
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
|
| 8 |
+
<script src="https://cdn.tailwindcss.com"></script>
|
| 9 |
+
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
|
| 10 |
+
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
|
| 11 |
+
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
|
| 12 |
+
<script src="https://unpkg.com/feather-icons"></script>
|
| 13 |
+
<style>
|
| 14 |
+
.service-card {
|
| 15 |
+
transition: all 0.3s ease;
|
| 16 |
+
}
|
| 17 |
+
.service-card:hover {
|
| 18 |
+
transform: translateY(-5px);
|
| 19 |
+
box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
|
| 20 |
+
}
|
| 21 |
+
.btn-hover:hover {
|
| 22 |
+
transform: translateY(-2px);
|
| 23 |
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
|
| 24 |
+
}
|
| 25 |
+
</style>
|
| 26 |
+
</head>
|
| 27 |
+
<body class="font-sans antialiased text-gray-800">
|
| 28 |
+
<!-- Navigation -->
|
| 29 |
+
<nav class="bg-white shadow-sm fixed w-full z-10">
|
| 30 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 31 |
+
<div class="flex justify-between h-16">
|
| 32 |
+
<div class="flex items-center">
|
| 33 |
+
<div class="flex-shrink-0 flex items-center">
|
| 34 |
+
<i data-feather="cpu" class="text-blue-600 h-8 w-8"></i>
|
| 35 |
+
<span class="ml-2 text-xl font-bold text-gray-900">TechConnect</span>
|
| 36 |
+
</div>
|
| 37 |
+
</div>
|
| 38 |
+
<div class="hidden md:ml-6 md:flex md:items-center md:space-x-8">
|
| 39 |
+
<a href="index.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Home</a>
|
| 40 |
+
<a href="services.html" class="text-blue-600 border-blue-500 px-3 py-2 text-sm font-medium">Services</a>
|
| 41 |
+
<a href="about.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">About</a>
|
| 42 |
+
<a href="contact.html" class="text-gray-500 hover:text-blue-600 px-3 py-2 text-sm font-medium">Contact</a>
|
| 43 |
+
<a href="login.html" class="bg-blue-600 text-white px-4 py-2 rounded-md text-sm font-medium hover:bg-blue-700 transition duration-300 btn-hover">Client Login</a>
|
| 44 |
+
</div>
|
| 45 |
+
<div class="-mr-2 flex items-center md:hidden">
|
| 46 |
+
<button type="button" id="mobile-menu-button" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none">
|
| 47 |
+
<i data-feather="menu"></i>
|
| 48 |
+
</button>
|
| 49 |
+
</div>
|
| 50 |
+
</div>
|
| 51 |
+
</div>
|
| 52 |
+
<!-- Mobile menu -->
|
| 53 |
+
<div class="hidden md:hidden" id="mobile-menu">
|
| 54 |
+
<div class="pt-2 pb-3 space-y-1">
|
| 55 |
+
<a href="index.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Home</a>
|
| 56 |
+
<a href="services.html" class="bg-blue-50 text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Services</a>
|
| 57 |
+
<a href="about.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">About</a>
|
| 58 |
+
<a href="contact.html" class="text-gray-500 hover:bg-gray-50 hover:text-blue-600 block px-3 py-2 rounded-md text-base font-medium">Contact</a>
|
| 59 |
+
<a href="login.html" class="bg-blue-600 text-white block px-3 py-2 rounded-md text-base font-medium hover:bg-blue-700">Client Login</a>
|
| 60 |
+
</div>
|
| 61 |
+
</div>
|
| 62 |
+
</nav>
|
| 63 |
+
|
| 64 |
+
<!-- Page Header -->
|
| 65 |
+
<div class="bg-blue-700 pt-24 pb-20">
|
| 66 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
| 67 |
+
<h1 class="text-4xl font-extrabold tracking-tight text-white sm:text-5xl lg:text-6xl" data-aos="fade-up">
|
| 68 |
+
Our IT Support Services
|
| 69 |
+
</h1>
|
| 70 |
+
<p class="mt-6 max-w-3xl mx-auto text-xl text-blue-100" data-aos="fade-up" data-aos-delay="100">
|
| 71 |
+
Comprehensive remote IT solutions tailored to your business needs
|
| 72 |
+
</p>
|
| 73 |
+
</div>
|
| 74 |
+
</div>
|
| 75 |
+
|
| 76 |
+
<!-- Services Grid -->
|
| 77 |
+
<div class="py-16 bg-white">
|
| 78 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 79 |
+
<div class="lg:text-center mb-12">
|
| 80 |
+
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Solutions</h2>
|
| 81 |
+
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
|
| 82 |
+
Expert IT support services
|
| 83 |
+
</p>
|
| 84 |
+
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
|
| 85 |
+
We offer a full range of remote IT support services to keep your business running smoothly.
|
| 86 |
+
</p>
|
| 87 |
+
</div>
|
| 88 |
+
|
| 89 |
+
<div class="grid grid-cols-1 gap-8 md:grid-cols-2 lg:grid-cols-3">
|
| 90 |
+
<!-- Service Card 1 -->
|
| 91 |
+
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm border border-gray-200 service-card" data-aos="fade-up">
|
| 92 |
+
<div class="p-6">
|
| 93 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 94 |
+
<i data-feather="headphones" class="h-6 w-6"></i>
|
| 95 |
+
</div>
|
| 96 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Help Desk Support</h3>
|
| 97 |
+
<p class="mt-2 text-base text-gray-500">
|
| 98 |
+
24/7 remote technical support for all your IT issues. Our experts are available anytime to resolve your problems quickly.
|
| 99 |
+
</p>
|
| 100 |
+
<ul class="mt-4 space-y-2 text-sm text-gray-600">
|
| 101 |
+
<li class="flex items-start">
|
| 102 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 103 |
+
<span class="ml-2">Unlimited support tickets</span>
|
| 104 |
+
</li>
|
| 105 |
+
<li class="flex items-start">
|
| 106 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 107 |
+
<span class="ml-2">Average response time <15 min</span>
|
| 108 |
+
</li>
|
| 109 |
+
<li class="flex items-start">
|
| 110 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 111 |
+
<span class="ml-2">Phone, chat & email support</span>
|
| 112 |
+
</li>
|
| 113 |
+
</ul>
|
| 114 |
+
</div>
|
| 115 |
+
<div class="px-6 py-4 bg-gray-100 border-t border-gray-200">
|
| 116 |
+
<a href="contact.html" class="text-base font-medium text-blue-600 hover:text-blue-500">
|
| 117 |
+
Learn more <span aria-hidden="true">→</span>
|
| 118 |
+
</a>
|
| 119 |
+
</div>
|
| 120 |
+
</div>
|
| 121 |
+
|
| 122 |
+
<!-- Service Card 2 -->
|
| 123 |
+
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm border border-gray-200 service-card" data-aos="fade-up" data-aos-delay="100">
|
| 124 |
+
<div class="p-6">
|
| 125 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 126 |
+
<i data-feather="shield" class="h-6 w-6"></i>
|
| 127 |
+
</div>
|
| 128 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Network Security</h3>
|
| 129 |
+
<p class="mt-2 text-base text-gray-500">
|
| 130 |
+
Comprehensive protection for your network, systems and data against evolving cyber threats.
|
| 131 |
+
</p>
|
| 132 |
+
<ul class="mt-4 space-y-2 text-sm text-gray-600">
|
| 133 |
+
<li class="flex items-start">
|
| 134 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 135 |
+
<span class="ml-2">Firewall configuration & management</span>
|
| 136 |
+
</li>
|
| 137 |
+
<li class="flex items-start">
|
| 138 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 139 |
+
<span class="ml-2">Endpoint protection</span>
|
| 140 |
+
</li>
|
| 141 |
+
<li class="flex items-start">
|
| 142 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 143 |
+
<span class="ml-2">Security audits & compliance</span>
|
| 144 |
+
</li>
|
| 145 |
+
<li class="flex items-start">
|
| 146 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 147 |
+
<span class="ml-2">VPN setup & maintenance</span>
|
| 148 |
+
</li>
|
| 149 |
+
</ul>
|
| 150 |
+
</div>
|
| 151 |
+
<div class="px-6 py-4 bg-gray-100 border-t border-gray-200">
|
| 152 |
+
<a href="contact.html" class="text-base font-medium text-blue-600 hover:text-blue-500">
|
| 153 |
+
Learn more <span aria-hidden="true">→</span>
|
| 154 |
+
</a>
|
| 155 |
+
</div>
|
| 156 |
+
</div>
|
| 157 |
+
|
| 158 |
+
<!-- Service Card 3 -->
|
| 159 |
+
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm border border-gray-200 service-card" data-aos="fade-up" data-aos-delay="200">
|
| 160 |
+
<div class="p-6">
|
| 161 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 162 |
+
<i data-feather="cloud" class="h-6 w-6"></i>
|
| 163 |
+
</div>
|
| 164 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Cloud Solutions</h3>
|
| 165 |
+
<p class="mt-2 text-base text-gray-500">
|
| 166 |
+
Migrate to the cloud or optimize your existing cloud infrastructure for better performance and cost efficiency.
|
| 167 |
+
</p>
|
| 168 |
+
<ul class="mt-4 space-y-2 text-sm text-gray-600">
|
| 169 |
+
<li class="flex items-start">
|
| 170 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 171 |
+
<span class="ml-2">Cloud migration planning</span>
|
| 172 |
+
</li>
|
| 173 |
+
<li class="flex items-start">
|
| 174 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 175 |
+
<span class="ml-2">AWS, Azure & Google Cloud support</span>
|
| 176 |
+
</li>
|
| 177 |
+
<li class="flex items-start">
|
| 178 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 179 |
+
<span class="ml-2">Cost optimization strategies</span>
|
| 180 |
+
</li>
|
| 181 |
+
<li class="flex items-start">
|
| 182 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 183 |
+
<span class="ml-2">Hybrid cloud solutions</span>
|
| 184 |
+
</li>
|
| 185 |
+
</ul>
|
| 186 |
+
</div>
|
| 187 |
+
<div class="px-6 py-4 bg-gray-100 border-t border-gray-200">
|
| 188 |
+
<a href="contact.html" class="text-base font-medium text-blue-600 hover:text-blue-500">
|
| 189 |
+
Learn more <span aria-hidden="true">→</span>
|
| 190 |
+
</a>
|
| 191 |
+
</div>
|
| 192 |
+
</div>
|
| 193 |
+
|
| 194 |
+
<!-- Service Card 4 -->
|
| 195 |
+
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm border border-gray-200 service-card" data-aos="fade-up">
|
| 196 |
+
<div class="p-6">
|
| 197 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 198 |
+
<i data-feather="database" class="h-6 w-6"></i>
|
| 199 |
+
</div>
|
| 200 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">Data Backup & Recovery</h3>
|
| 201 |
+
<p class="mt-2 text-base text-gray-500">
|
| 202 |
+
Protect your critical business data with automated backups and rapid recovery solutions.
|
| 203 |
+
</p>
|
| 204 |
+
<ul class="mt-4 space-y-2 text-sm text-gray-600">
|
| 205 |
+
<li class="flex items-start">
|
| 206 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 207 |
+
<span class="ml-2">Automated daily backups</span>
|
| 208 |
+
</li>
|
| 209 |
+
<li class="flex items-start">
|
| 210 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 211 |
+
<span class="ml-2">Disaster recovery planning</span>
|
| 212 |
+
</li>
|
| 213 |
+
<li class="flex items-start">
|
| 214 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 215 |
+
<span class="ml-2">Encrypted storage</span>
|
| 216 |
+
</li>
|
| 217 |
+
<li class="flex items-start">
|
| 218 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 219 |
+
<span class="ml-2">Point-in-time recovery</span>
|
| 220 |
+
</li>
|
| 221 |
+
</ul>
|
| 222 |
+
</div>
|
| 223 |
+
<div class="px-6 py-4 bg-gray-100 border-t border-gray-200">
|
| 224 |
+
<a href="contact.html" class="text-base font-medium text-blue-600 hover:text-blue-500">
|
| 225 |
+
Learn more <span aria-hidden="true">→</span>
|
| 226 |
+
</a>
|
| 227 |
+
</div>
|
| 228 |
+
</div>
|
| 229 |
+
|
| 230 |
+
<!-- Service Card 5 -->
|
| 231 |
+
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm border border-gray-200 service-card" data-aos="fade-up" data-aos-delay="100">
|
| 232 |
+
<div class="p-6">
|
| 233 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 234 |
+
<i data-feather="monitor" class="h-6 w-6"></i>
|
| 235 |
+
</div>
|
| 236 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">System Monitoring</h3>
|
| 237 |
+
<p class="mt-2 text-base text-gray-500">
|
| 238 |
+
Proactive monitoring of your IT infrastructure to identify and resolve issues before they impact your business.
|
| 239 |
+
</p>
|
| 240 |
+
<ul class="mt-4 space-y-2 text-sm text-gray-600">
|
| 241 |
+
<li class="flex items-start">
|
| 242 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 243 |
+
<span class="ml-2">24/7 system monitoring</span>
|
| 244 |
+
</li>
|
| 245 |
+
<li class="flex items-start">
|
| 246 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 247 |
+
<span class="ml-2">Performance optimization</span>
|
| 248 |
+
</li>
|
| 249 |
+
<li class="flex items-start">
|
| 250 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 251 |
+
<span class="ml-2">Automated alerts</span>
|
| 252 |
+
</li>
|
| 253 |
+
<li class="flex items-start">
|
| 254 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 255 |
+
<span class="ml-2">Monthly health reports</span>
|
| 256 |
+
</li>
|
| 257 |
+
</ul>
|
| 258 |
+
</div>
|
| 259 |
+
<div class="px-6 py-4 bg-gray-100 border-t border-gray-200">
|
| 260 |
+
<a href="contact.html" class="text-base font-medium text-blue-600 hover:text-blue-500">
|
| 261 |
+
Learn more <span aria-hidden="true">→</span>
|
| 262 |
+
</a>
|
| 263 |
+
</div>
|
| 264 |
+
</div>
|
| 265 |
+
|
| 266 |
+
<!-- Service Card 6 -->
|
| 267 |
+
<div class="bg-gray-50 rounded-lg overflow-hidden shadow-sm border border-gray-200 service-card" data-aos="fade-up" data-aos-delay="200">
|
| 268 |
+
<div class="p-6">
|
| 269 |
+
<div class="flex items-center justify-center h-12 w-12 rounded-md bg-blue-500 text-white">
|
| 270 |
+
<i data-feather="users" class="h-6 w-6"></i>
|
| 271 |
+
</div>
|
| 272 |
+
<h3 class="mt-6 text-lg font-medium text-gray-900">IT Consulting</h3>
|
| 273 |
+
<p class="mt-2 text-base text-gray-500">
|
| 274 |
+
Strategic IT planning and consulting to align technology with your business goals.
|
| 275 |
+
</p>
|
| 276 |
+
<ul class="mt-4 space-y-2 text-sm text-gray-600">
|
| 277 |
+
<li class="flex items-start">
|
| 278 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 279 |
+
<span class="ml-2">Technology roadmap development</span>
|
| 280 |
+
</li>
|
| 281 |
+
<li class="flex items-start">
|
| 282 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 283 |
+
<span class="ml-2">Vendor selection & management</span>
|
| 284 |
+
</li>
|
| 285 |
+
<li class="flex items-start">
|
| 286 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 287 |
+
<span class="ml-2">Budget planning</span>
|
| 288 |
+
</li>
|
| 289 |
+
<li class="flex items-start">
|
| 290 |
+
<i data-feather="check" class="flex-shrink-0 h-4 w-4 text-green-500 mt-0.5"></i>
|
| 291 |
+
<span class="ml-2">Digital transformation strategy</span>
|
| 292 |
+
</li>
|
| 293 |
+
</ul>
|
| 294 |
+
</div>
|
| 295 |
+
<div class="px-6 py-4 bg-gray-100 border-t border-gray-200">
|
| 296 |
+
<a href="contact.html" class="text-base font-medium text-blue-600 hover:text-blue-500">
|
| 297 |
+
Learn more <span aria-hidden="true">→</span>
|
| 298 |
+
</a>
|
| 299 |
+
</div>
|
| 300 |
+
</div>
|
| 301 |
+
</div>
|
| 302 |
+
</div>
|
| 303 |
+
</div>
|
| 304 |
+
|
| 305 |
+
<!-- Pricing Section -->
|
| 306 |
+
<div class="bg-gray-50 py-16">
|
| 307 |
+
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
|
| 308 |
+
<div class="lg:text-center mb-12">
|
| 309 |
+
<h2 class="text-base text-blue-600 font-semibold tracking-wide uppercase">Plans</h2>
|
| 310 |
+
<p class="mt-2 text-3xl leading-8 font-extrabold tracking-tight text-gray-900 sm:text-4xl">
|
| 311 |
+
Flexible pricing options
|
| 312 |
+
</p>
|
| 313 |
+
<p class="mt-4 max-w-2xl text-xl text-gray-500 lg:mx-auto">
|
| 314 |
+
Choose the plan that fits your business needs. All plans include 24/7 support.
|
| 315 |
+
</p>
|
| 316 |
+
</div>
|
| 317 |
+
|
| 318 |
+
<div class="mt-12 space-y-4 sm:mt-16 sm:space-y-0 sm:grid sm:grid-cols-3 sm:gap-6 lg:max-w-4xl lg:mx-auto">
|
| 319 |
+
<!-- Basic Plan -->
|
| 320 |
+
<div class="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200" data-aos="fade-up">
|
| 321 |
+
<div class="p-6">
|
| 322 |
+
<h2 class="text-lg leading-6 font-medium text-gray-900">Basic</h2>
|
| 323 |
+
<p class="mt-4">
|
| 324 |
+
<span class="text-4xl font-extrabold text-gray-900">$99</span>
|
| 325 |
+
<span class="text-base font-medium text-gray-500">/month</span>
|
| 326 |
+
</p>
|
| 327 |
+
<p class="mt-4 text-sm text-gray-500">
|
| 328 |
+
Perfect for small businesses with basic IT needs
|
| 329 |
+
</p>
|
| 330 |
+
<a href="contact.html" class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900 btn-hover">
|
| 331 |
+
Get started
|
| 332 |
+
</a>
|
| 333 |
+
</div>
|
| 334 |
+
<div class="pt-6 pb-8 px-6">
|
| 335 |
+
<h3 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
|
| 336 |
+
<ul class="mt-6 space-y-4">
|
| 337 |
+
<li class="flex space-x-3">
|
| 338 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 339 |
+
<span class="text-sm text-gray-500">5 support tickets/month</span>
|
| 340 |
+
</li>
|
| 341 |
+
<li class="flex space-x-3">
|
| 342 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 343 |
+
<span class="text-sm text-gray-500">Remote desktop support</span>
|
| 344 |
+
</li>
|
| 345 |
+
<li class="flex space-x-3">
|
| 346 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 347 |
+
<span class="text-sm text-gray-500">Email & chat support</span>
|
| 348 |
+
</li>
|
| 349 |
+
<li class="flex space-x-3">
|
| 350 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 351 |
+
<span class="text-sm text-gray-500">Basic security monitoring</span>
|
| 352 |
+
</li>
|
| 353 |
+
</ul>
|
| 354 |
+
</div>
|
| 355 |
+
</div>
|
| 356 |
+
|
| 357 |
+
<!-- Professional Plan -->
|
| 358 |
+
<div class="border-2 border-blue-500 rounded-lg shadow-sm divide-y divide-gray-200 transform scale-105 z-10" data-aos="fade-up" data-aos-delay="100">
|
| 359 |
+
<div class="p-6">
|
| 360 |
+
<div class="flex justify-between">
|
| 361 |
+
<h2 class="text-lg leading-6 font-medium text-gray-900">Professional</h2>
|
| 362 |
+
<span class="inline-flex items-center px-3 py-0.5 rounded-full text-xs font-medium bg-blue-100 text-blue-800">
|
| 363 |
+
Most popular
|
| 364 |
+
</span>
|
| 365 |
+
</div>
|
| 366 |
+
<p class="mt-4">
|
| 367 |
+
<span class="text-4xl font-extrabold text-gray-900">$299</span>
|
| 368 |
+
<span class="text-base font-medium text-gray-500">/month</span>
|
| 369 |
+
</p>
|
| 370 |
+
<p class="mt-4 text-sm text-gray-500">
|
| 371 |
+
Comprehensive support for growing businesses
|
| 372 |
+
</p>
|
| 373 |
+
<a href="contact.html" class="mt-8 block w-full bg-blue-600 border border-blue-600 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-blue-700 btn-hover">
|
| 374 |
+
Get started
|
| 375 |
+
</a>
|
| 376 |
+
</div>
|
| 377 |
+
<div class="pt-6 pb-8 px-6">
|
| 378 |
+
<h3 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
|
| 379 |
+
<ul class="mt-6 space-y-4">
|
| 380 |
+
<li class="flex space-x-3">
|
| 381 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 382 |
+
<span class="text-sm text-gray-500">Unlimited support tickets</span>
|
| 383 |
+
</li>
|
| 384 |
+
<li class="flex space-x-3">
|
| 385 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 386 |
+
<span class="text-sm text-gray-500">Priority response</span>
|
| 387 |
+
</li>
|
| 388 |
+
<li class="flex space-x-3">
|
| 389 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 390 |
+
<span class="text-sm text-gray-500">Phone, email & chat support</span>
|
| 391 |
+
</li>
|
| 392 |
+
<li class="flex space-x-3">
|
| 393 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 394 |
+
<span class="text-sm text-gray-500">Advanced security monitoring</span>
|
| 395 |
+
</li>
|
| 396 |
+
<li class="flex space-x-3">
|
| 397 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 398 |
+
<span class="text-sm text-gray-500">Monthly system health reports</span>
|
| 399 |
+
</li>
|
| 400 |
+
<li class="flex space-x-3">
|
| 401 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 402 |
+
<span class="text-sm text-gray-500">Quarterly strategy sessions</span>
|
| 403 |
+
</li>
|
| 404 |
+
</ul>
|
| 405 |
+
</div>
|
| 406 |
+
</div>
|
| 407 |
+
|
| 408 |
+
<!-- Enterprise Plan -->
|
| 409 |
+
<div class="border border-gray-200 rounded-lg shadow-sm divide-y divide-gray-200" data-aos="fade-up" data-aos-delay="200">
|
| 410 |
+
<div class="p-6">
|
| 411 |
+
<h2 class="text-lg leading-6 font-medium text-gray-900">Enterprise</h2>
|
| 412 |
+
<p class="mt-4">
|
| 413 |
+
<span class="text-4xl font-extrabold text-gray-900">$599</span>
|
| 414 |
+
<span class="text-base font-medium text-gray-500">/month</span>
|
| 415 |
+
</p>
|
| 416 |
+
<p class="mt-4 text-sm text-gray-500">
|
| 417 |
+
Custom solutions for large organizations
|
| 418 |
+
</p>
|
| 419 |
+
<a href="contact.html" class="mt-8 block w-full bg-gray-800 border border-gray-800 rounded-md py-2 text-sm font-semibold text-white text-center hover:bg-gray-900 btn-hover">
|
| 420 |
+
Get started
|
| 421 |
+
</a>
|
| 422 |
+
</div>
|
| 423 |
+
<div class="pt-6 pb-8 px-6">
|
| 424 |
+
<h3 class="text-xs font-medium text-gray-900 tracking-wide uppercase">What's included</h3>
|
| 425 |
+
<ul class="mt-6 space-y-4">
|
| 426 |
+
<li class="flex space-x-3">
|
| 427 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 428 |
+
<span class="text-sm text-gray-500">Unlimited support tickets</span>
|
| 429 |
+
</li>
|
| 430 |
+
<li class="flex space-x-3">
|
| 431 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 432 |
+
<span class="text-sm text-gray-500">Dedicated account manager</span>
|
| 433 |
+
</li>
|
| 434 |
+
<li class="flex space-x-3">
|
| 435 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 436 |
+
<span class="text-sm text-gray-500">24/7 phone support</span>
|
| 437 |
+
</li>
|
| 438 |
+
<li class="flex space-x-3">
|
| 439 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 440 |
+
<span class="text-sm text-gray-500">Enterprise-grade security</span>
|
| 441 |
+
</li>
|
| 442 |
+
<li class="flex space-x-3">
|
| 443 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 444 |
+
<span class="text-sm text-gray-500">Weekly system reports</span>
|
| 445 |
+
</li>
|
| 446 |
+
<li class="flex space-x-3">
|
| 447 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 448 |
+
<span class="text-sm text-gray-500">Monthly strategy sessions</span>
|
| 449 |
+
</li>
|
| 450 |
+
<li class="flex space-x-3">
|
| 451 |
+
<i data-feather="check" class="flex-shrink-0 h-5 w-5 text-green-500"></i>
|
| 452 |
+
<span class="text-sm text-gray-500">Custom SLA agreements</span>
|
| 453 |
+
</li>
|
| 454 |
+
</ul>
|
| 455 |
+
</div>
|
| 456 |
+
</div>
|
| 457 |
+
</div>
|
| 458 |
+
</div>
|
| 459 |
+
</div>
|
| 460 |
+
|
| 461 |
+
<!-- CTA Section -->
|
| 462 |
+
<div class="bg-blue-700">
|
| 463 |
+
<div class="max-w-2xl mx-auto text-center py-16 px-4 sm:py-20 sm:px-6 lg:px-8">
|
| 464 |
+
<h2 class="text-3xl font-extrabold text-white sm:text-4xl" data-aos="fade-up">
|
| 465 |
+
<span class="block">Not sure which plan is right?</span>
|
| 466 |
+
<span class="block text-blue-200">We'll help you choose.</span>
|
| 467 |
+
</h2>
|
| 468 |
+
<p class="mt-4 text-lg leading-6 text-blue-100" data-aos="fade-up" data-aos-delay="100">
|
| 469 |
+
Schedule a free consultation with our IT experts to assess your needs and recommend the perfect solution.
|
| 470 |
+
</p>
|
| 471 |
+
<a href="contact.html" class="mt-8 w-full inline-flex items-center justify-center px-5 py-3 border border-transparent text-base font-medium rounded-md text-blue-600 bg-white hover:bg-blue-50 sm:w-auto btn-hover" data-aos="fade-up" data-aos-delay="200">
|
| 472 |
+
Contact Our Team
|
| 473 |
+
</a>
|
| 474 |
+
</div>
|
| 475 |
+
</div>
|
| 476 |
+
|
| 477 |
+
<!-- Footer -->
|
| 478 |
+
<footer class="bg-gray-900">
|
| 479 |
+
<div class="max-w-7xl mx-auto py-12 px-4 sm:px-6 lg:px-8">
|
| 480 |
+
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">
|
| 481 |
+
<div>
|
| 482 |
+
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Company</h3>
|
| 483 |
+
<ul class="mt-4 space-y-4">
|
| 484 |
+
<li><a href="about.html" class="text-base text-gray-300 hover:text-white">About</a></li>
|
| 485 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Careers</a></li>
|
| 486 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Blog</a></li>
|
| 487 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Press</a></li>
|
| 488 |
+
</ul>
|
| 489 |
+
</div>
|
| 490 |
+
<div>
|
| 491 |
+
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Services</h3>
|
| 492 |
+
<ul class="mt-4 space-y-4">
|
| 493 |
+
<li><a href="services.html" class="text-base text-gray-300 hover:text-white">IT Support</a></li>
|
| 494 |
+
<li><a href="services.html" class="text-base text-gray-300 hover:text-white">Network Security</a></li>
|
| 495 |
+
<li><a href="services.html" class="text-base text-gray-300 hover:text-white">Cloud Solutions</a></li>
|
| 496 |
+
<li><a href="services.html" class="text-base text-gray-300 hover:text-white">Data Backup</a></li>
|
| 497 |
+
</ul>
|
| 498 |
+
</div>
|
| 499 |
+
<div>
|
| 500 |
+
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Support</h3>
|
| 501 |
+
<ul class="mt-4 space-y-4">
|
| 502 |
+
<li><a href="contact.html" class="text-base text-gray-300 hover:text-white">Contact Us</a></li>
|
| 503 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Knowledge Base</a></li>
|
| 504 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Community</a></li>
|
| 505 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">System Status</a></li>
|
| 506 |
+
</ul>
|
| 507 |
+
</div>
|
| 508 |
+
<div>
|
| 509 |
+
<h3 class="text-sm font-semibold text-gray-400 tracking-wider uppercase">Legal</h3>
|
| 510 |
+
<ul class="mt-4 space-y-4">
|
| 511 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Privacy</a></li>
|
| 512 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Terms</a></li>
|
| 513 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">Cookie Policy</a></li>
|
| 514 |
+
<li><a href="#" class="text-base text-gray-300 hover:text-white">GDPR</a></li>
|
| 515 |
+
</ul>
|
| 516 |
+
</div>
|
| 517 |
+
</div>
|
| 518 |
+
<div class="mt-12 border-t border-gray-800 pt-8 flex flex-col md:flex-row justify-between items-center">
|
| 519 |
+
<div class="flex space-x-6 md:order-2">
|
| 520 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 521 |
+
<i data-feather="twitter" class="h-6 w-6"></i>
|
| 522 |
+
</a>
|
| 523 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 524 |
+
<i data-feather="facebook" class="h-6 w-6"></i>
|
| 525 |
+
</a>
|
| 526 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 527 |
+
<i data-feather="instagram" class="h-6 w-6"></i>
|
| 528 |
+
</a>
|
| 529 |
+
<a href="#" class="text-gray-400 hover:text-white">
|
| 530 |
+
<i data-feather="linkedin" class="h-6 w-6"></i>
|
| 531 |
+
</a>
|
| 532 |
+
</div>
|
| 533 |
+
<p class="mt-8 text-base text-gray-400 md:mt-0 md:order-1">
|
| 534 |
+
© 2023 TechConnect. All rights reserved.
|
| 535 |
+
</p>
|
| 536 |
+
</div>
|
| 537 |
+
</div>
|
| 538 |
+
</footer>
|
| 539 |
+
|
| 540 |
+
<script>
|
| 541 |
+
// Mobile menu toggle
|
| 542 |
+
document.getElementById('mobile-menu-button').addEventListener('click', function() {
|
| 543 |
+
const menu = document.getElementById('mobile-menu');
|
| 544 |
+
menu.classList.toggle('hidden');
|
| 545 |
+
|
| 546 |
+
// Change icon based on menu state
|
| 547 |
+
const icon = this.querySelector('i');
|
| 548 |
+
if (menu.classList.contains('hidden')) {
|
| 549 |
+
icon.setAttribute('data-feather', 'menu');
|
| 550 |
+
} else {
|
| 551 |
+
icon.setAttribute('data-feather', 'x');
|
| 552 |
+
}
|
| 553 |
+
feather.replace();
|
| 554 |
+
});
|
| 555 |
+
|
| 556 |
+
// Initialize AOS animations
|
| 557 |
+
AOS.init({
|
| 558 |
+
duration: 800,
|
| 559 |
+
easing: 'ease-in-out',
|
| 560 |
+
once: true
|
| 561 |
+
});
|
| 562 |
+
|
| 563 |
+
// Initialize feather icons
|
| 564 |
+
feather.replace();
|
| 565 |
+
</script>
|
| 566 |
+
</body>
|
| 567 |
+
</html>
|