hero 0.0.3

🦸 A highly customizable hero sections templates for WASM frameworks like Yew, Dioxus, and Leptos.
Documentation
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.calendar-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.calendar-button:focus {
  transform: translateY(-1px);
}
.calendar-button.pressed {
  transform: translateY(1px);
}
@media (max-width: 1600px) {
  .calendar-button-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }
  .calendar-button {
    width: 280px !important;
    height: 100px !important;
  }
  .button-text {
    font-size: 16px !important;
    width: 90px !important;
    height: 40px !important;
    top: 25px !important;
    left: 30px !important;
  }
  .button-icon {
    width: 140px !important;
    height: 100px !important;
    left: 137px !important;
  }
  .calendar-icon {
    width: 50px !important;
    height: 35px !important;
  }
}
@media (max-width: 768px) {
  .calendar-button {
    width: 240px !important;
    height: 80px !important;
    border-radius: 40px !important;
  }
  .button-text {
    font-size: 14px !important;
    width: 80px !important;
    height: 30px !important;
    top: 20px !important;
    left: 20px !important;
  }
  .button-icon {
    width: 120px !important;
    height: 80px !important;
    border-radius: 40px !important;
    left: 117px !important;
  }
  .calendar-icon {
    width: 40px !important;
    height: 28px !important;
  }
}