-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
21 lines (17 loc) · 872 Bytes
/
Copy pathscript.js
File metadata and controls
21 lines (17 loc) · 872 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Handle CTA button clicks
const ctaButtons = document.querySelectorAll('.cta-button');
ctaButtons.forEach(button => {
button.addEventListener('click', () => {
// Placeholder for actual signup/payment integration
// You can integrate with Stripe, PayPal, or a form submission
alert('Ready to join Ikenna! \n\nIntegrate this button with:\n- Payment processor (Stripe, PayPal)\n- Email signup form\n- Booking system\n- Or contact form');
// Example: Redirect to signup page
// window.location.href = '/signup';
// Example: Open email client
// window.location.href = 'mailto:hello@ikenna.co.ke?subject=Membership Inquiry';
});
});
// Smooth scroll for multiple CTAs (if needed in future)
document.addEventListener('DOMContentLoaded', () => {
console.log('Ikenna Coworking - Landing Page Loaded');
});