-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (86 loc) · 2.5 KB
/
Copy pathindex.html
File metadata and controls
88 lines (86 loc) · 2.5 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
<!DOCTYPE html>
<html lang="zh-TW">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PuppyMoney - 省錢記帳應用</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
.container {
background: white;
padding: 40px;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
text-align: center;
max-width: 500px;
margin: 20px;
}
h1 {
color: #6B46C1;
margin-bottom: 20px;
font-size: 2.5em;
}
.subtitle {
color: #6B7280;
font-size: 1.2em;
margin-bottom: 30px;
}
.links {
display: flex;
flex-direction: column;
gap: 15px;
}
.link {
display: inline-block;
padding: 15px 30px;
background: #6B46C1;
color: white;
text-decoration: none;
border-radius: 10px;
transition: all 0.3s ease;
font-weight: 600;
}
.link:hover {
background: #553C9A;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(107, 70, 193, 0.4);
}
.secondary-link {
background: #E5E7EB;
color: #374151;
}
.secondary-link:hover {
background: #D1D5DB;
color: #374151;
}
.footer {
margin-top: 30px;
color: #9CA3AF;
font-size: 0.9em;
}
</style>
</head>
<body>
<div class="container">
<h1>🐶 PuppyMoney</h1>
<p class="subtitle">實用的省錢記帳應用</p>
<div class="links">
<a href="privacy-policy.html" class="link">隱私權政策</a>
<a href="terms-of-service.html" class="link secondary-link">服務條款</a>
</div>
<div class="footer">
<p>© 2024 PuppyMoney. All rights reserved.</p>
<p>培養良好的儲蓄習慣,讓每一分錢都有意義</p>
</div>
</div>
</body>
</html>