From ef4b89cb9e6ee83608a1822a19fac1c99924560f Mon Sep 17 00:00:00 2001 From: Sneha Tiwari Date: Wed, 16 Oct 2024 20:51:36 +0530 Subject: [PATCH 1/2] new changes --- index.html | 146 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 146 insertions(+) diff --git a/index.html b/index.html index 4f406a5..0bac375 100644 --- a/index.html +++ b/index.html @@ -1063,6 +1063,152 @@

कृष्ण के प्रति मेरा समर्पण

+
+ + +

Divine Abodes of Krishna & Hospitals

+

Explore Temples and Major Hospitals in India

+ +
+ +
+ Dwarkadhish + Shree Dwarkadhish Temple +

Dwarka, Gujarat

+
+ + +
+ Banke Bihari Temple + Banke Bihari Temple +

Vrindavan, Uttar Pradesh

+
+ + +
+ Guruvayur Temple + Guruvayur Temple +

Guruvayur, Kerala

+
+ + +
+ Sri Krishna Janmabhoomi Temple + Sri Krishna Janmabhoomi Temple +

Mathura, Uttar Pradesh

+
+ + +
+ Udupi Sri Krishna Matha + Udupi Sri Krishna Matha +

Udupi, Karnataka

+
+ + +
+ Jagannath Temple + Jagannath Temple +

Puri, Odisha

+
+ + +
+ Prem Mandir + Prem Mandir +

Vrindavan, Uttar Pradesh

+
+ + +
+ ISKCON Temple + ISKCON Temple +

Bengaluru, Karnataka

+
+ + +
+ Govind Dev Ji Temple + Govind Dev Ji Temple +

Jaipur, Rajasthan

+
+ + +
+ Radha Raman Temple + Radha Raman Temple +

Vrindavan, Uttar Pradesh

+
+ + +
+ Ranchi Jagannath Temple + Ranchi Jagannath Temple +

Ranchi, Jharkhand

+
+ + +
+ Nathdwara Shrinathji Temple + Nathdwara Shrinathji Temple +

Nathdwara, Rajasthan

+
+ + + +
+

Frequently Asked Questions

From 334619812c72cc50deb347fa8124f2d3063589b9 Mon Sep 17 00:00:00 2001 From: cjyotshnareddy Date: Thu, 17 Oct 2024 17:25:21 +0530 Subject: [PATCH 2/2] added javascript for the buttons in devotional-resources page whenever we hover over the buttons there is a slight change seen in the buttons. --- devotional-resources.html | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/devotional-resources.html b/devotional-resources.html index 5dfad30..73f9a9b 100644 --- a/devotional-resources.html +++ b/devotional-resources.html @@ -619,6 +619,23 @@

Follow Us

} }); } + +const ctaButtons = document.querySelectorAll('.cta-button'); + + +ctaButtons.forEach(button => { + + button.addEventListener('mouseenter', () => { + button.style.transform = 'scale(1.05)'; + button.style.transition = 'transform 0.3s ease'; + }); + + + button.addEventListener('mouseleave', () => { + button.style.transform = 'scale(1)'; + }); +}); +