forked from CodeBuddySLTNS/Activity-Tracker-for-Students
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose
More file actions
125 lines (115 loc) · 3.14 KB
/
docker-compose
File metadata and controls
125 lines (115 loc) · 3.14 KB
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
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Sendy Hosting</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap" rel="stylesheet">
<style>
* {
margin: 0; padding: 0; box-sizing: border-box;
}
body {
font-family: 'Orbitron', sans-serif;
background: #0e0e1f;
color: #e0e0ff;
padding: 30px 20px;
}
header {
text-align: center;
margin-bottom: 40px;
}
header h1 {
font-size: 2.8rem;
color: #0ff;
text-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
}
header p {
font-size: 1rem;
color: #aaa;
}
.product-grid {
display: grid;
gap: 25px;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.product-card {
background: #1a1a2e;
border: 1px solid #00f0ff33;
border-radius: 15px;
padding: 20px;
box-shadow: 0 0 10px #0ff2, 0 0 25px #0ff1;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
transform: translateY(-5px);
box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
}
.product-card h2 {
font-size: 1.4rem;
color: #0ff;
text-shadow: 0 0 5px #0ff;
margin-bottom: 10px;
}
.product-card p {
font-size: 0.95rem;
color: #ccc;
margin-bottom: 15px;
}
.btn {
display: inline-block;
background: #0ff;
color: #000;
padding: 10px 16px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
box-shadow: 0 0 10px #0ff, 0 0 20px #0ff;
transition: background 0.3s ease, transform 0.3s ease;
}
.btn:hover {
background: #00e0e0;
transform: scale(1.05);
box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
}
@media (max-width: 600px) {
header h1 {
font-size: 2rem;
}
}
</style>
</head>
<body>
<header>
<h1>Sendy Hosting</h1>
<p>List Script Bot Wa!</p>
</header>
<section class="product-grid">
<div class="product-card">
<h2>Top Up FF</h2>
<p>Web Top Up Sendy.</p>
<a class="btn" href="https://sendystgg.vercel.app/">Bayar via WA/QRIS</a>
</div>
<div class="product-card">
<h2>Config FF Website</h2>
<p>Web Config FF Gratisan🗿.</p>
<a class="btn" href="https://sites.google.com/view/sendymediasites/runlisten">Req Config via WhatsApp</a>
</div>
<div class="product-card">
<h2>BELI AKUN FF</h2>
<p>Buy Akun FF, Siap MC😎.</p>
<a class="btn" href="https://wa.me/6285641917737?text=Halo+Sendy+Aku+Mau+Beli+Akun+FF">Beli via WhatsApp</a>
</div>
<div class="product-card">
<h2>WEB ALL PAYMENT</h2>
<p>Website All Payment Gua.</p>
<a class="btn" href="https://verdant-faloodeh-c9b4b8.netlify.app/">Bayar via WhatsApp</a>
</div>
<div class="product-card">
<h2>Req Config</h2>
<p>Request Config epep</p>
<a class="btn" href="https://wa.me/6285641917737?text=Sendy+gw+mau+Req+Config">Req Config Chat Aja</a>
</div>
</section>
</body>
</html>