Add files via upload

This commit is contained in:
Gëzim Os
2025-07-31 19:28:23 +03:00
committed by GitHub
parent 064b3ea76a
commit 65effec64b

461
docs/index.html Normal file
View File

@@ -0,0 +1,461 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>inkOS - Minimalist Android Launcher</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
line-height: 1.6;
color: #333;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
header {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
padding: 1rem 0;
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 100;
}
.header-content {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
display: flex;
align-items: center;
gap: 15px;
}
.logo-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
color: white;
font-size: 24px;
font-weight: bold;
}
.logo h1 {
font-size: 2rem;
font-weight: 700;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.nav-links {
display: flex;
gap: 30px;
}
.nav-links a {
text-decoration: none;
color: #333;
font-weight: 500;
transition: color 0.3s ease;
}
.nav-links a:hover {
color: #667eea;
}
.hero {
text-align: center;
padding: 80px 0;
color: white;
}
.hero h2 {
font-size: 3.5rem;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.hero p {
font-size: 1.3rem;
margin-bottom: 40px;
opacity: 0.9;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.cta-buttons {
display: flex;
gap: 20px;
justify-content: center;
flex-wrap: wrap;
}
.btn {
padding: 15px 30px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 10px;
}
.btn-primary {
background: white;
color: #667eea;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.2);
color: white;
border: 2px solid white;
}
.btn-secondary:hover {
background: white;
color: #667eea;
}
.features {
background: white;
padding: 80px 0;
}
.features h2 {
text-align: center;
font-size: 2.5rem;
margin-bottom: 60px;
color: #333;
}
.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 40px;
}
.feature-card {
background: #f8f9fa;
padding: 30px;
border-radius: 15px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: 1px solid #e9ecef;
}
.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.feature-icon {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
color: white;
font-size: 24px;
}
.feature-card h3 {
font-size: 1.4rem;
margin-bottom: 15px;
color: #333;
}
.feature-card p {
color: #666;
line-height: 1.6;
}
.section {
padding: 60px 0;
}
.section-title {
text-align: center;
font-size: 2.2rem;
margin-bottom: 50px;
color: #333;
}
.highlight {
background: #f8f9fa;
padding: 60px 0;
}
.stats {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
text-align: center;
}
.stat-item {
background: white;
padding: 30px;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: #667eea;
margin-bottom: 10px;
}
.stat-label {
color: #666;
font-weight: 500;
}
footer {
background: #333;
color: white;
text-align: center;
padding: 40px 0;
}
.footer-content {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}
.footer-links {
display: flex;
gap: 30px;
flex-wrap: wrap;
}
.footer-links a {
color: #ccc;
text-decoration: none;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: white;
}
@media (max-width: 768px) {
.hero h2 {
font-size: 2.5rem;
}
.features-grid {
grid-template-columns: 1fr;
}
.nav-links {
display: none;
}
.cta-buttons {
flex-direction: column;
align-items: center;
}
.footer-content {
flex-direction: column;
text-align: center;
}
}
</style>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<div class="logo">
<div class="logo-icon">📱</div>
<h1>inkOS</h1>
</div>
<nav class="nav-links">
<a href="#features">Features</a>
<a href="#customization">Customization</a>
<a href="#download">Download</a>
<a href="https://github.com/gezimos/inkOS">GitHub</a>
</nav>
</div>
</div>
</header>
<section class="hero">
<div class="container">
<h2>Minimalist Android Launcher</h2>
<p>A clean, customizable, and feature-rich launcher designed for simplicity and productivity. Perfect for e-ink devices and minimalist enthusiasts.</p>
<div class="cta-buttons">
<a href="#download" class="btn btn-primary">📥 Download APK</a>
<a href="https://github.com/gezimos/inkOS" class="btn btn-secondary">⭐ View on GitHub</a>
</div>
</div>
</section>
<section class="features" id="features">
<div class="container">
<h2>🔧 Core Features</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🏠</div>
<h3>Customizable Home Screen</h3>
<p>Set the number of home apps, pages, and easily drag & drop to rearrange. Auto-divide apps across multiple pages with visual indicators.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🅰</div>
<h3>Flexible Typography</h3>
<p>Universal font support with individual customization for apps, clock, battery, and notifications. Adjustable text sizes for perfect readability.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎨</div>
<h3>Theme & Visual Customization</h3>
<p>Light/dark themes with custom element colors. E-ink optimization with auto-refresh. Show/hide status bar and UI elements as needed.</p>
</div>
<div class="feature-card">
<div class="feature-icon"></div>
<h3>Smart Gestures</h3>
<p>Volume key navigation, customizable double-tap actions, swipe gestures for quick access to notifications and apps.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔔</div>
<h3>Advanced Notifications</h3>
<p>Smart notification system with asterisk indicators, label previews, media playing status, and dedicated notification window.</p>
</div>
<div class="feature-card">
<div class="feature-icon">⚙️</div>
<h3>Advanced Controls</h3>
<p>Hide apps, lock settings with biometrics, backup/restore settings, and comprehensive app management with long-press actions.</p>
</div>
</div>
</div>
</section>
<section class="highlight" id="customization">
<div class="container">
<h2 class="section-title">🎯 Perfect For</h2>
<div class="stats">
<div class="stat-item">
<div class="stat-number">📖</div>
<div class="stat-label">E-ink Devices<br><small>Optimized for Mudita Kompakt & similar</small></div>
</div>
<div class="stat-item">
<div class="stat-number">🎯</div>
<div class="stat-label">Minimalists<br><small>Clean, distraction-free interface</small></div>
</div>
<div class="stat-item">
<div class="stat-number"></div>
<div class="stat-label">Power Users<br><small>Extensive customization options</small></div>
</div>
<div class="stat-item">
<div class="stat-number">🔒</div>
<div class="stat-label">Privacy Focused<br><small>App locking & hidden apps</small></div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<h2 class="section-title">✨ Key Highlights</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">📱</div>
<h3>Re-order Apps</h3>
<p>Drag and drop interface for easy app rearrangement. Visual numbering system helps you organize your home screen exactly how you want it.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎵</div>
<h3>Media Integration</h3>
<p>Shows currently playing media with music note indicators and track names. Perfect for music and podcast lovers.</p>
</div>
<div class="feature-card">
<div class="feature-icon">🔐</div>
<h3>App Security</h3>
<p>Lock individual apps with fingerprint or PIN. Hide sensitive apps from the drawer while keeping them accessible when needed.</p>
</div>
<div class="feature-card">
<div class="feature-icon">💾</div>
<h3>Backup & Restore</h3>
<p>Save your perfect setup and restore it anytime. Essential for device changes or factory resets.</p>
</div>
</div>
</div>
</section>
<section class="highlight" id="download">
<div class="container">
<div style="text-align: center;">
<h2 class="section-title">📥 Get inkOS</h2>
<p style="font-size: 1.2rem; color: #666; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto;">
Ready to transform your Android experience? Download the latest version or explore the source code.
</p>
<div class="cta-buttons">
<a href="https://github.com/gezimos/inkOS/releases/latest" class="btn btn-primary">📱 Download Latest APK</a>
<a href="https://github.com/gezimos/inkOS" class="btn btn-secondary">👨‍💻 View Source Code</a>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-content">
<div>
<p>&copy; 2025 inkOS. Open source Android launcher.</p>
</div>
<div class="footer-links">
<a href="https://github.com/gezimos/inkOS">GitHub</a>
<a href="https://github.com/gezimos/inkOS/issues">Issues</a>
<a href="https://github.com/gezimos/inkOS/releases">Releases</a>
<a href="https://github.com/gezimos/inkOS/blob/main/LICENSE">License</a>
</div>
</div>
</div>
</footer>
</body>
</html>