Leeyamsworld Portal
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
max-width: 600px;
margin: 40px auto;
padding: 0 20px;
color: #333;
background-color: #f9f9f9;
}
h1 {
color: #8b5cf6;
text-align: center;
font-size: 2.2rem;
}
.cta-container {
text-align: center;
margin: 30px 0;
}
.btn {
display: inline-block;
background-color: #8b5cf6;
color: white;
padding: 14px 28px;
text-decoration: none;
border-radius: 8px;
font-weight: bold;
font-size: 1.2rem;
box-shadow: 0 4px 10px rgba(139, 92, 246, 0.3);
transition: transform 0.2s, background-color 0.2s;
}
.btn:hover {
background-color: #7c3aed;
transform: translateY(-2px);
}
.card {
background: white;
padding: 24px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0,0,0,0.05);
margin-bottom: 25px;
}
.warning {
border-left: 5px solid #ef4444;
background-color: #fee2e2;
}
.warning h2 {
color: #b91c1c;
margin-top: 0;
}
ol {
padding-left: 20px;
}
li {
margin-bottom: 12px;
}
ul {
margin-top: 5px;
padding-left: 20px;
}
How to Set Up the App
You can add Leeyamsworld directly onto your mobile home screen or computer desktop as a dedicated app:
- Click the Launch Leeyamsworld App button above to load the player.
- Open your web browser's options or configuration menu:
- On iOS (Safari): Tap the Share box icon at the bottom, then scroll down and tap "Add to Home Screen".
- On Android (Chrome): Tap the Three Dots icon in the top right, then tap "Install app" or "Add to Home screen".
- On Desktop (Chrome/Edge): Click the tiny Install monitor icon on the right side of your web address bar.
- Launch the shortcut right from your device grid anytime!
⚠️ Internet & WiFi Required
Please note that you need an active WiFi or internet connection to run the app properly.
// Ensure the service worker registers immediately from the entry landing page
if ('serviceWorker' in navigator) {
window.addEventListener('load', () => {
navigator.serviceWorker.register('/sw.js')
.then(reg => console.log('Landing page service worker registered scope:', reg.scope))
.catch(err => console.log('Landing page registration tracking failed:', err));
});
}
<