-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
236 lines (216 loc) · 7.43 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TweaksDev22 - Explore the Best Tweaks and Themes</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<link rel="icon" href="img/icon.webp" type="image/webp">
<link rel="icon" type="image/webp" href="img/icon.webp">
<link rel="icon" type="image/webp" href="img/icon.webp">
<style>
body {
font-family: 'Roboto', sans-serif;
background-color: #eaeaea;
color: #333;
padding-top: 56px;
}
.navbar {
background-color: #333;
}
.navbar-brand, .navbar-nav .nav-link {
color: #fff;
}
.hero-section {
background: linear-gradient(to right, #4CAF50, #2196F3);
color: #fff;
padding: 80px 0;
}
.hero-section h1, .hero-section p {
margin-bottom: 20px;
}
.btn-light, .btn-primary, .btn-secondary {
margin-right: 10px;
}
.features-section {
padding: 40px 0;
}
.feature {
text-align: center;
padding: 20px;
}
.feature:hover {
background-color: #ddd;
}
.feature .icon {
font-size: 48px;
margin-bottom: 20px;
color: #333;
}
.feature h3, .feature p {
color: #333;
}
.footer {
background-color: #333;
color: #fff;
padding: 20px 0;
text-align: center;
}
.footer a, .social-icons a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
.footer a:hover, .social-icons a:hover {
color: #ddd;
}
.image-container {
display: flex;
justify-content: space-between;
align-items: center;
margin: 40px 0;
}
.image-box {
display: inline-block;
margin: 0 10px;
}
.image-box img {
max-width: 80%;
margin: auto;
}
.image-container button {
background: none;
border: none;
color: #fff;
font-size: 24px;
cursor: pointer;
}
.image-container button:focus {
outline: none;
}
.image-box img {
width: 80%;
margin: auto;
}
@media (min-width: 768px) {
.image-box img {
width: 80%;
height: auto;
}
}
@media (min-width: 992px) {
.image-box img {
width: 60%;
height: auto;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="#">TweaksDev22</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="hero-section text-center">
<div class="container">
<h1>Welcome to TweaksDev22</h1>
<p>Discover the best tweaks, themes, and tools for your iOS device.</p>
<a href="cydia://url/https://cydia.saurik.com/api/share#?source=https://tweaksdev22.github.io/" class="btn btn-light">Add to Cydia</a>
<a href="sileo://source/https://tweaksdev22.github.io/" class="btn btn-primary">Add to Sileo</a>
<a href="zbra://sources/add/https://tweaksdev22.github.io/" class="btn btn-secondary">Add to Zebra</a>
</div>
</section>
<section class="image-container">
<button onclick="prevImage()"><</button>
<div class="image-box">
<img src="image1.jpg" alt="Image 1">
</div>
<div class="image-box">
<img src="image2.jpg" alt="Image 2">
</div>
<div class="image-box">
<img src="image3.jpg" alt="Image 3">
</div>
<div class="image-box">
<img src="image4.jpg" alt="Image 4">
</div>
<button onclick="nextImage()">></button>
</section>
<section class="features-section" id="features">
<div class="container">
<h2 class="text-center mb-4">Features</h2>
<div class="row">
<div class="col-md-4 feature">
<div class="icon"><i class="fas fa-cogs"></i></div>
<h3>Curated Tweaks</h3>
<p>Handpicked selection ensuring quality and compatibility.</p>
</div>
<div class="col-md-4 feature">
<div class="icon"><i class="fas fa-sync"></i></div>
<h3>Regular Updates</h3>
<p>Stay up to date with the latest enhancements and fixes.</p>
</div>
<div class="col-md-4 feature">
<div class="icon"><i class="fas fa-users"></i></div>
<h3>Community Support</h3>
<p>Get help and support from the community and the developers.</p>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<p>© 2024 TweaksDev22. All Rights Reserved.</p>
<div class="social-icons">
<a href="mailto:[email protected]"><i class="fas fa-envelope"></i></a>
<a href="https://discord.gg/Q67N6VFXnJ"><i class="fab fa-discord"></i></a>
<a href="https://www.reddit.com/r/TweaksDev22/"><i class="fab fa-reddit"></i></a>
</div>
</div>
</footer>
<script>
let currentImageIndex = 0;
const images = [
'https://tweaksdev22.github.io/img/1.jpg',
'https://tweaksdev22.github.io/img/2.jpg',
'https://tweaksdev22.github.io/img/3.jpg',
'https://tweaksdev22.github.io/img/coming.webp',
];
function showImage(index) {
const imageBoxes = document.querySelectorAll('.image-box img');
imageBoxes.forEach(box => {
box.src = images[index];
});
}
function nextImage() {
currentImageIndex = (currentImageIndex + 1) % images.length;
showImage(currentImageIndex);
}
function prevImage() {
currentImageIndex = (currentImageIndex - 1 + images.length) % images.length;
showImage(currentImageIndex);
}
// Initialize the first image display
showImage(currentImageIndex);
</script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>