|
7 | 7 | <link rel="stylesheet" href="style.css"> |
8 | 8 | <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> |
9 | 9 | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> |
| 10 | + <script> |
| 11 | + // Device detection and adaptive loading |
| 12 | + const isMobile = /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) || window.innerWidth <= 768; |
| 13 | + document.documentElement.classList.add(isMobile ? 'mobile-device' : 'desktop-device'); |
| 14 | + </script> |
10 | 15 | </head> |
11 | 16 | <body> |
12 | | - <!-- Navigation --> |
13 | | - <nav class="navbar"> |
| 17 | + <div class="loading-screen"> |
| 18 | + <div class="loader"></div> |
| 19 | + <p class="loading-text">Loading Wild Kernels...</p> |
| 20 | + </div> |
| 21 | + |
| 22 | + <!-- Desktop Navigation --> |
| 23 | + <nav class="navbar desktop-nav"> |
14 | 24 | <div class="nav-container"> |
15 | 25 | <div class="nav-logo"> |
16 | | - <i class="fas fa-leaf"></i> |
| 26 | + <i class="fas fa-seedling"></i> |
17 | 27 | <span>Wild Kernels</span> |
18 | 28 | </div> |
19 | 29 | <ul class="nav-menu"> |
20 | | - <li><a href="#home">Home</a></li> |
21 | | - <li><a href="#kernels">Kernels</a></li> |
22 | | - <li><a href="#features">Features</a></li> |
23 | | - <li><a href="#team">Team</a></li> |
24 | | - <li><a href="#contact">Contact</a></li> |
| 30 | + <li><a href="#home" class="nav-link">Home</a></li> |
| 31 | + <li><a href="#kernels" class="nav-link">Kernels</a></li> |
| 32 | + <li><a href="#features" class="nav-link">Features</a></li> |
| 33 | + <li><a href="#team" class="nav-link">Team</a></li> |
| 34 | + <li><a href="#contact" class="nav-link">Contact</a></li> |
25 | 35 | </ul> |
| 36 | + </div> |
| 37 | + </nav> |
| 38 | + |
| 39 | + <!-- Mobile Navigation --> |
| 40 | + <nav class="navbar mobile-nav"> |
| 41 | + <div class="nav-container"> |
| 42 | + <div class="nav-logo"> |
| 43 | + <i class="fas fa-seedling"></i> |
| 44 | + <span>Wild Kernels</span> |
| 45 | + </div> |
26 | 46 | <div class="hamburger"> |
27 | 47 | <span></span> |
28 | 48 | <span></span> |
29 | 49 | <span></span> |
30 | 50 | </div> |
31 | 51 | </div> |
| 52 | + <ul class="mobile-menu"> |
| 53 | + <li><a href="#home" class="nav-link">Home</a></li> |
| 54 | + <li><a href="#kernels" class="nav-link">Kernels</a></li> |
| 55 | + <li><a href="#features" class="nav-link">Features</a></li> |
| 56 | + <li><a href="#team" class="nav-link">Team</a></li> |
| 57 | + <li><a href="#contact" class="nav-link">Contact</a></li> |
| 58 | + </ul> |
32 | 59 | </nav> |
33 | 60 |
|
34 | 61 | <!-- Hero Section --> |
35 | 62 | <section id="home" class="hero"> |
36 | | - <div class="hero-container"> |
37 | | - <div class="hero-content"> |
38 | | - <h1 class="hero-title"> |
39 | | - <span class="gradient-text">Wild Kernels</span> |
40 | | - <br>Premium Android Performance |
41 | | - </h1> |
42 | | - <p class="hero-description"> |
43 | | - Experience the ultimate in Android kernel performance with our carefully crafted, |
44 | | - high-performance kernels featuring KernelSU and advanced security. |
45 | | - </p> |
46 | | - <div class="hero-buttons"> |
47 | | - <a href="#kernels" class="btn btn-primary"> |
48 | | - <i class="fas fa-download"></i> |
49 | | - Download Kernels |
50 | | - </a> |
51 | | - <a href="https://github.com/WildKernels" class="btn btn-secondary"> |
52 | | - <i class="fab fa-github"></i> |
53 | | - View on GitHub |
54 | | - </a> |
55 | | - </div> |
| 63 | + <!-- Desktop Hero --> |
| 64 | + <div class="hero-content desktop-hero"> |
| 65 | + <div class="floating-card card-1"> |
| 66 | + <i class="fas fa-microchip"></i> |
| 67 | + <span>Performance</span> |
| 68 | + </div> |
| 69 | + <div class="floating-card card-2"> |
| 70 | + <i class="fas fa-shield-alt"></i> |
| 71 | + <span>Security</span> |
| 72 | + </div> |
| 73 | + <div class="floating-card card-3"> |
| 74 | + <i class="fas fa-bolt"></i> |
| 75 | + <span>Speed</span> |
56 | 76 | </div> |
57 | | - <div class="hero-visual"> |
58 | | - <div class="floating-card"> |
59 | | - <i class="fas fa-microchip"></i> |
60 | | - <h3>High Performance</h3> |
61 | | - <p>Optimized for speed</p> |
| 77 | + <div class="floating-card card-4"> |
| 78 | + <i class="fas fa-leaf"></i> |
| 79 | + <span>Organic</span> |
| 80 | + </div> |
| 81 | + |
| 82 | + <h1>Wild Kernels</h1> |
| 83 | + <p>Premium Android kernels crafted with nature's precision for enhanced performance, security, and customization</p> |
| 84 | + <div class="hero-buttons"> |
| 85 | + <a href="#kernels" class="btn btn-primary">Explore Kernels</a> |
| 86 | + <a href="https://github.com/WildKernels" class="btn btn-secondary">GitHub</a> |
| 87 | + </div> |
| 88 | + </div> |
| 89 | + |
| 90 | + <!-- Mobile Hero --> |
| 91 | + <div class="hero-content mobile-hero"> |
| 92 | + <div class="mobile-logo"> |
| 93 | + <i class="fas fa-seedling"></i> |
| 94 | + </div> |
| 95 | + <h1>Wild Kernels</h1> |
| 96 | + <p>Premium Android kernels for your device</p> |
| 97 | + <div class="mobile-features"> |
| 98 | + <div class="mobile-feature"> |
| 99 | + <i class="fas fa-tachometer-alt"></i> |
| 100 | + <span>Fast</span> |
62 | 101 | </div> |
63 | | - <div class="floating-card"> |
64 | | - <i class="fas fa-shield-alt"></i> |
65 | | - <h3>KernelSU Ready</h3> |
66 | | - <p>Built-in root solution</p> |
| 102 | + <div class="mobile-feature"> |
| 103 | + <i class="fas fa-lock"></i> |
| 104 | + <span>Secure</span> |
67 | 105 | </div> |
68 | | - <div class="floating-card"> |
69 | | - <i class="fas fa-leaf"></i> |
70 | | - <h3>Battery Optimized</h3> |
71 | | - <p>Extended battery life</p> |
| 106 | + <div class="mobile-feature"> |
| 107 | + <i class="fas fa-cog"></i> |
| 108 | + <span>Custom</span> |
72 | 109 | </div> |
73 | 110 | </div> |
| 111 | + <div class="hero-buttons"> |
| 112 | + <a href="#kernels" class="btn btn-primary">Get Started</a> |
| 113 | + </div> |
74 | 114 | </div> |
75 | 115 | </section> |
76 | 116 |
|
|
0 commit comments