-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (53 loc) · 2.86 KB
/
index.html
File metadata and controls
60 lines (53 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Debian Apps Directory | Verified DEB Files</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
.app-card:hover { transform: translateY(-5px); transition: 0.3s; }
</style>
</head>
<body class="bg-gray-50 font-sans">
<header class="bg-white border-b p-6 mb-10 shadow-sm">
<div class="max-w-6xl mx-auto flex justify-between items-center">
<h1 class="text-2xl font-extrabold text-blue-700">Debian-Apps.io</h1>
<p class="text-gray-500 text-sm hidden md:block">Verified .deb links for Debian derivatives</p>
</div>
</header>
<main class="max-w-6xl mx-auto px-4">
<div class="mb-8">
<input type="text" placeholder="Search for apps (Chrome, VS Code, Discord...)" class="w-full p-4 rounded-xl border border-gray-200 shadow-sm focus:ring-2 focus:ring-blue-500 outline-none">
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8 mb-20">
<div class="app-card bg-white p-6 rounded-2xl shadow-sm border border-gray-100 flex flex-col">
<div class="flex items-center mb-6">
<img src="https://www.google.com/chrome/static/images/chrome-logo.svg" class="w-14 h-14 mr-4">
<div>
<h2 class="text-xl font-bold text-gray-800">Google Chrome</h2>
<span class="text-xs font-bold text-blue-600 bg-blue-50 px-2 py-1 rounded">Official .deb</span>
</div>
</div>
<div class="space-y-3 mb-6">
<div class="flex justify-between text-sm">
<span class="text-gray-400">Supported:</span>
<span class="font-medium text-green-600">Debian 12, 13, Ubuntu</span>
</div>
<div class="flex justify-between text-sm">
<span class="text-gray-400">License:</span>
<span class="font-medium">Proprietary</span>
</div>
</div>
<div class="mt-auto space-y-2">
<a href="https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb" class="block w-full bg-blue-600 text-white text-center py-3 rounded-xl font-bold hover:bg-blue-700 transition">Direct Download</a>
<a href="https://google.com/chrome" class="block w-full text-center text-gray-500 text-xs py-1 hover:underline">Official Project Website</a>
</div>
</div>
</div>
</main>
<footer class="text-center py-10 text-gray-400 text-sm border-t">
<p>© 2025 Debian-Apps Project. Verified manually via Distrobox.</p>
</footer>
</body>
</html>