Ardabossikossi commited on
Commit
4ab8d0c
·
verified ·
1 Parent(s): 968fa15

make buttons clicklable

Browse files
Files changed (2) hide show
  1. index.html +8 -8
  2. style.css +1 -1
index.html CHANGED
@@ -27,13 +27,13 @@
27
  </sparkles-effect>
28
  <p class="text-2xl mb-8 max-w-2xl mx-auto leading-relaxed text-white/90">Join <span class="text-purple-300">DevHub Academy</span> and unlock your potential in the world of code</p>
29
  <div class="flex justify-center gap-4">
30
- <a href="https://devhubacademy.netlify.app/" target="_blank" class="bg-white text-blue-600 px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition duration-300">Live Demo</a>
31
- <a href="#courses" class="border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition duration-300">Explore Courses</a>
32
- <a href="https://discord.gg/CJzDNf9D" target="_blank" class="border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition duration-300 flex items-center gap-2">
33
- <i data-feather="message-circle"></i> Join Discord
34
- </a>
 
35
  </div>
36
- </div>
37
  <div class="absolute bottom-0 left-0 right-0 h-16 bg-white"></div>
38
  </section>
39
  <!-- Features Section -->
@@ -73,10 +73,10 @@
73
  <div class="max-w-2xl mx-auto">
74
  <h2 class="text-3xl font-bold mb-6">Join Our Coding Community</h2>
75
  <p class="text-xl mb-8">Connect with fellow learners, get help from mentors, and participate in coding challenges on our Discord server!</p>
76
- <a href="https://discord.gg/CJzDNf9D" target="_blank" class="bg-white text-indigo-800 px-8 py-4 rounded-full font-bold hover:bg-gray-100 transition duration-300 inline-flex items-center gap-2">
77
  <i data-feather="message-circle"></i> Join Now
78
  </a>
79
- </div>
80
  </div>
81
  </div>
82
  <h3 class="text-xl font-semibold mb-3">Career Services</h3>
 
27
  </sparkles-effect>
28
  <p class="text-2xl mb-8 max-w-2xl mx-auto leading-relaxed text-white/90">Join <span class="text-purple-300">DevHub Academy</span> and unlock your potential in the world of code</p>
29
  <div class="flex justify-center gap-4">
30
+ <a href="https://devhubacademy.netlify.app/" target="_blank" class="bg-white text-blue-600 px-8 py-3 rounded-full font-semibold hover:bg-gray-100 transition duration-300 transform hover:scale-105 active:scale-95">Live Demo</a>
31
+ <a href="#courses" class="border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition duration-300 transform hover:scale-105 active:scale-95">Explore Courses</a>
32
+ <a href="https://discord.gg/CJzDNf9D" target="_blank" class="border-2 border-white px-8 py-3 rounded-full font-semibold hover:bg-white hover:text-blue-600 transition duration-300 flex items-center gap-2 transform hover:scale-105 active:scale-95">
33
+ <i data-feather="message-circle"></i> Join Discord
34
+ </a>
35
+ </div>
36
  </div>
 
37
  <div class="absolute bottom-0 left-0 right-0 h-16 bg-white"></div>
38
  </section>
39
  <!-- Features Section -->
 
73
  <div class="max-w-2xl mx-auto">
74
  <h2 class="text-3xl font-bold mb-6">Join Our Coding Community</h2>
75
  <p class="text-xl mb-8">Connect with fellow learners, get help from mentors, and participate in coding challenges on our Discord server!</p>
76
+ <a href="https://discord.gg/CJzDNf9D" target="_blank" class="bg-white text-indigo-800 px-8 py-4 rounded-full font-bold hover:bg-gray-100 transition duration-300 inline-flex items-center gap-2 transform hover:scale-105 active:scale-95">
77
  <i data-feather="message-circle"></i> Join Now
78
  </a>
79
+ </div>
80
  </div>
81
  </div>
82
  <h3 class="text-xl font-semibold mb-3">Career Services</h3>
style.css CHANGED
@@ -146,8 +146,8 @@ a:hover {
146
  transform: translateY(-8px) scale(1.02);
147
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
148
  border-color: rgba(236, 72, 153, 0.5);
 
149
  }
150
-
151
  .course-footer a {
152
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
153
  }
 
146
  transform: translateY(-8px) scale(1.02);
147
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
148
  border-color: rgba(236, 72, 153, 0.5);
149
+ cursor: pointer;
150
  }
 
151
  .course-footer a {
152
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
153
  }