-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdashboard.html
More file actions
75 lines (70 loc) · 2.33 KB
/
dashboard.html
File metadata and controls
75 lines (70 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FocusForge Pro Dashboard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="dashboard-container">
<!-- Header -->
<header class="dashboard-header">
<img src="icons/icon128.png" alt="FocusForge" class="logo">
<h1>FocusForge Pro</h1>
<p>Your Ultimate Productivity Companion</p>
</header>
<!-- Official Partners Section -->
<section class="partners-section">
<h2 class="section-title">Official Partners</h2>
<div class="partners-grid">
<!-- Amazon -->
<a href="https://amzn.to/4hJCxyL" class="partner-card">
<img src="icons/amazon-icon.png" alt="Amazon">
<div class="partner-content">
<h3>Amazon</h3>
<p>Productivity Essentials</p>
</div>
</a>
<!-- VPNCity -->
<a href="https://www.vpncity.com/ref/67a901299ec32756" class="partner-card">
<img src="icons/vpn-icon.png" alt="VPNCity">
<div class="partner-content">
<h3>VPNCity</h3>
<p>Secure Browsing</p>
</div>
</a>
<!-- Trip.com -->
<a href="https://trip.tp.st/Cj5Hy7Xj" class="partner-card">
<img src="icons/trip-icon.png" alt="Trip.com">
<div class="partner-content">
<h3>Trip.com</h3>
<p>Travel Deals</p>
</div>
</a>
<!-- Searadar -->
<a href="https://searadar.tp.st/GgqkSfG1" class="partner-card">
<img src="icons/searadar-icon.png" alt="Searadar">
<div class="partner-content">
<h3>Searadar</h3>
<p>Sea Adventures</p>
</div>
</a>
</div>
</section>
<!-- Support Section -->
<section class="support-section">
<div class="support-card">
<div class="coffee-icon">☕</div>
<div class="support-content">
<h3>Support Our Work</h3>
<p>Keep FocusForge free for everyone</p>
<a href="https://paypal.me/stellahnjogezi" class="support-button">
Buy Me Coffee →
</a>
</div>
</div>
</section>
</div>
</body>
</html>