-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
127 lines (113 loc) · 3.49 KB
/
index.html
File metadata and controls
127 lines (113 loc) · 3.49 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
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PayThree - ESOP & Payroll Management</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
text-align: center;
background: white;
padding: 3rem;
border-radius: 20px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
max-width: 600px;
margin: 2rem;
}
h1 {
color: #333;
margin-bottom: 1rem;
font-size: 2.5rem;
}
p {
color: #666;
margin-bottom: 2rem;
font-size: 1.1rem;
line-height: 1.6;
}
.buttons {
display: flex;
gap: 1rem;
justify-content: center;
flex-wrap: wrap;
}
.btn {
display: inline-block;
padding: 1rem 2rem;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
text-decoration: none;
border-radius: 10px;
font-weight: 600;
transition: transform 0.3s ease, box-shadow 0.3s ease;
border: none;
cursor: pointer;
font-size: 1rem;
}
.btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.btn-secondary {
background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.features {
margin-top: 3rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
}
.feature {
padding: 1.5rem;
background: #f8f9fa;
border-radius: 10px;
}
.feature h3 {
color: #333;
margin-bottom: 0.5rem;
}
.feature p {
color: #666;
font-size: 0.9rem;
margin: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>🚀 PayThree</h1>
<p>Blockchain-based ESOP & Payroll Management Platform on Avalanche Network</p>
<div class="buttons">
<a href="/employee-portal" class="btn">Employee Portal</a>
<a href="/hr-portal" class="btn btn-secondary">HR Portal</a>
</div>
<div class="features">
<div class="feature">
<h3>👥 Employee Portal</h3>
<p>View ESOPs, track payouts, manage your blockchain wallet</p>
</div>
<div class="feature">
<h3>🏢 HR Portal</h3>
<p>Manage employees, process payroll, handle ESOP grants</p>
</div>
<div class="feature">
<h3>⛓️ Blockchain</h3>
<p>Built on Avalanche C-Chain for fast, secure transactions</p>
</div>
</div>
</div>
</body>
</html>