Section 6 : add icons
Browse files- index.html +18 -10
- style.css +7 -0
index.html
CHANGED
|
@@ -185,9 +185,14 @@
|
|
| 185 |
</style>
|
| 186 |
|
| 187 |
<script src="https://www.google.com/recaptcha/api.js?render=6LfWu2YcAAAAAPooSewjuw82sSxhAdh657M4VvzT"></script>
|
| 188 |
-
|
| 189 |
-
|
| 190 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 191 |
// do request for recaptcha token
|
| 192 |
// response is promise with passed token
|
| 193 |
grecaptcha.execute('6LfWu2YcAAAAAPooSewjuw82sSxhAdh657M4VvzT', {action:'validate_captcha'})
|
|
@@ -739,22 +744,22 @@ class="inline-flex items-center text-[#002060] hover:text-[#8DC63F] px-3 py-2 te
|
|
| 739 |
<div class="grid md:grid-cols-3 gap-8 mb-12">
|
| 740 |
<div class="bg-[var(--vlc-card)] p-6 rounded-lg shadow-lg border border-[var(--vlc-tint)]" data-aos="fade-up">
|
| 741 |
<div class="flex items-center gap-3 mb-4">
|
| 742 |
-
<i data-feather="
|
| 743 |
-
|
| 744 |
</div>
|
| 745 |
<p>Eliminate the complexity of managing disparate systems. Our platform integrates e-commerce, inventory, order management, and financial operations into a seamless experience.</p>
|
| 746 |
</div>
|
| 747 |
<div class="bg-[var(--vlc-card)] p-6 rounded-lg shadow-lg border border-[var(--vlc-tint)]" data-aos="fade-up" data-aos-delay="100">
|
| 748 |
<div class="flex items-center gap-3 mb-4">
|
| 749 |
-
<i data-feather="
|
| 750 |
-
|
| 751 |
</div>
|
| 752 |
<p>Gain comprehensive visibility into every facet of your business with centralized data, enabling you to make informed, data-driven decisions.</p>
|
| 753 |
</div>
|
| 754 |
<div class="bg-[var(--vlc-card)] p-6 rounded-lg shadow-lg border border-[var(--vlc-tint)]" data-aos="fade-up" data-aos-delay="200">
|
| 755 |
<div class="flex items-center gap-3 mb-4">
|
| 756 |
-
<i data-feather="
|
| 757 |
-
|
| 758 |
</div>
|
| 759 |
<p>Our cloud-native solution adapts to your evolving needs, enabling you to scale operations while reducing overhead and maintaining efficiency.</p>
|
| 760 |
</div>
|
|
@@ -763,7 +768,10 @@ class="inline-flex items-center text-[#002060] hover:text-[#8DC63F] px-3 py-2 te
|
|
| 763 |
<p class="text-xl mb-8 max-w-3xl mx-auto" data-aos="fade-up">
|
| 764 |
Expand your business across borders with a unified platform that supports multi-country, multi-currency, and multi-language capabilities. Take the first step towards effortless global growth today!
|
| 765 |
</p>
|
| 766 |
-
<button class="btn-primary px-8 py-3 rounded-full font-bold text-lg" data-aos="fade-up" data-aos-delay="100">
|
|
|
|
|
|
|
|
|
|
| 767 |
</div>
|
| 768 |
</section>
|
| 769 |
|
|
|
|
| 185 |
</style>
|
| 186 |
|
| 187 |
<script src="https://www.google.com/recaptcha/api.js?render=6LfWu2YcAAAAAPooSewjuw82sSxhAdh657M4VvzT"></script>
|
| 188 |
+
<script>
|
| 189 |
+
// Load Feather icons
|
| 190 |
+
document.addEventListener('DOMContentLoaded', function() {
|
| 191 |
+
if (window.feather) {
|
| 192 |
+
feather.replace();
|
| 193 |
+
}
|
| 194 |
+
});
|
| 195 |
+
grecaptcha.ready(function() {
|
| 196 |
// do request for recaptcha token
|
| 197 |
// response is promise with passed token
|
| 198 |
grecaptcha.execute('6LfWu2YcAAAAAPooSewjuw82sSxhAdh657M4VvzT', {action:'validate_captcha'})
|
|
|
|
| 744 |
<div class="grid md:grid-cols-3 gap-8 mb-12">
|
| 745 |
<div class="bg-[var(--vlc-card)] p-6 rounded-lg shadow-lg border border-[var(--vlc-tint)]" data-aos="fade-up">
|
| 746 |
<div class="flex items-center gap-3 mb-4">
|
| 747 |
+
<i data-feather="box" class="w-6 h-6 text-white"></i>
|
| 748 |
+
<h3 class="text-xl font-bold">One Platform for All Business Needs</h3>
|
| 749 |
</div>
|
| 750 |
<p>Eliminate the complexity of managing disparate systems. Our platform integrates e-commerce, inventory, order management, and financial operations into a seamless experience.</p>
|
| 751 |
</div>
|
| 752 |
<div class="bg-[var(--vlc-card)] p-6 rounded-lg shadow-lg border border-[var(--vlc-tint)]" data-aos="fade-up" data-aos-delay="100">
|
| 753 |
<div class="flex items-center gap-3 mb-4">
|
| 754 |
+
<i data-feather="activity" class="w-6 h-6 text-white"></i>
|
| 755 |
+
<h3 class="text-xl font-bold">Real-Time Business Insights</h3>
|
| 756 |
</div>
|
| 757 |
<p>Gain comprehensive visibility into every facet of your business with centralized data, enabling you to make informed, data-driven decisions.</p>
|
| 758 |
</div>
|
| 759 |
<div class="bg-[var(--vlc-card)] p-6 rounded-lg shadow-lg border border-[var(--vlc-tint)]" data-aos="fade-up" data-aos-delay="200">
|
| 760 |
<div class="flex items-center gap-3 mb-4">
|
| 761 |
+
<i data-feather="server" class="w-6 h-6 text-white"></i>
|
| 762 |
+
<h3 class="text-xl font-bold">Agile and Scalable Infrastructure</h3>
|
| 763 |
</div>
|
| 764 |
<p>Our cloud-native solution adapts to your evolving needs, enabling you to scale operations while reducing overhead and maintaining efficiency.</p>
|
| 765 |
</div>
|
|
|
|
| 768 |
<p class="text-xl mb-8 max-w-3xl mx-auto" data-aos="fade-up">
|
| 769 |
Expand your business across borders with a unified platform that supports multi-country, multi-currency, and multi-language capabilities. Take the first step towards effortless global growth today!
|
| 770 |
</p>
|
| 771 |
+
<button class="btn-primary px-8 py-3 rounded-full font-bold text-lg flex items-center justify-center gap-2 mx-auto" data-aos="fade-up" data-aos-delay="100">
|
| 772 |
+
<i data-feather="globe" class="w-5 h-5"></i>
|
| 773 |
+
Unlock Global Potential Now
|
| 774 |
+
</button>
|
| 775 |
</div>
|
| 776 |
</section>
|
| 777 |
|
style.css
CHANGED
|
@@ -27,6 +27,13 @@ p {
|
|
| 27 |
.card p:last-child {
|
| 28 |
margin-bottom: 0;
|
| 29 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
/* Flip Card Styles */
|
| 32 |
.flip-card {
|
|
|
|
| 27 |
.card p:last-child {
|
| 28 |
margin-bottom: 0;
|
| 29 |
}
|
| 30 |
+
/* Section 6 Button Styles */
|
| 31 |
+
.btn-primary i {
|
| 32 |
+
transition: transform 0.3s ease;
|
| 33 |
+
}
|
| 34 |
+
.btn-primary:hover i {
|
| 35 |
+
transform: rotate(15deg);
|
| 36 |
+
}
|
| 37 |
|
| 38 |
/* Flip Card Styles */
|
| 39 |
.flip-card {
|