tongxiaojun commited on
Commit
306bdcf
·
verified ·
1 Parent(s): 980a2d6

将 connect wallet 修改为 launch app. - Initial Deployment

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +124 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Phoenixlocker Com
3
- emoji: 🏃
4
- colorFrom: green
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: phoenixlocker-com
3
+ emoji: 🐳
4
+ colorFrom: pink
5
+ colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,124 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>PhoenixLocker Protocol | Smart Treasury Management</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ .gradient-bg {
11
+ background: linear-gradient(135deg, #f97316 0%, #ef4444 50%, #d946ef 100%);
12
+ }
13
+ .phoenix-animation {
14
+ animation: phoenix-rise 3s ease-in-out infinite alternate;
15
+ }
16
+ @keyframes phoenix-rise {
17
+ 0% { transform: translateY(0); }
18
+ 100% { transform: translateY(-10px); }
19
+ }
20
+ </style>
21
+ </head>
22
+ <body class="bg-gray-900 text-white font-sans">
23
+ <div class="min-h-screen flex flex-col">
24
+ <!-- Navigation -->
25
+ <nav class="py-6 px-4 sm:px-12 flex justify-between items-center">
26
+ <div class="flex items-center space-x-2">
27
+ <i class="fas fa-fire text-2xl text-orange-500"></i>
28
+ <span class="text-xl font-bold bg-clip-text text-transparent gradient-bg">PhoenixLocker</span>
29
+ </div>
30
+ <div class="hidden md:flex space-x-8">
31
+ <a href="#" class="hover:text-orange-400 transition">Features</a>
32
+ <a href="#" class="hover:text-orange-400 transition">How It Works</a>
33
+ <a href="#" class="hover:text-orange-400 transition">Security</a>
34
+ </div>
35
+ <button class="bg-orange-500 hover:bg-orange-600 px-4 py-2 rounded-lg font-medium transition transform hover:scale-105">
36
+ Launch App
37
+ </button>
38
+ </nav>
39
+
40
+ <!-- Hero Section -->
41
+ <main class="flex-grow flex flex-col items-center justify-center px-4 text-center">
42
+ <div class="max-w-4xl mx-auto">
43
+ <div class="mb-2 text-orange-400 font-semibold">INNOVATIVE TREASURY MANAGEMENT</div>
44
+ <h1 class="text-4xl sm:text-5xl md:text-6xl font-bold mb-6 leading-tight">
45
+ <span class="bg-clip-text text-transparent gradient-bg">PhoenixLocker Protocol</span>
46
+ </h1>
47
+ <p class="text-xl text-gray-300 mb-10 max-w-2xl mx-auto">
48
+ Inspired by Bill Gates' philosophy: "Microsoft is always 18 months away from failure."
49
+ Secure your funds with our automated, time-locked treasury management system on Ethereum.
50
+ </p>
51
+
52
+ <div class="flex flex-col sm:flex-row justify-center gap-4 mb-16">
53
+ <button class="bg-orange-500 hover:bg-orange-600 px-8 py-4 rounded-xl font-bold text-lg transition transform hover:scale-105 shadow-lg shadow-orange-500/20">
54
+ Launch App <i class="fas fa-arrow-right ml-2"></i>
55
+ </button>
56
+ <button class="border border-orange-500 text-orange-400 hover:bg-orange-900/30 px-8 py-4 rounded-xl font-bold text-lg transition transform hover:scale-105">
57
+ Learn More
58
+ </button>
59
+ </div>
60
+
61
+ <div class="relative w-full max-w-2xl mx-auto h-64 sm:h-80">
62
+ <div class="absolute inset-0 bg-gradient-to-br from-orange-500 to-purple-600 rounded-2xl opacity-20 blur-xl"></div>
63
+ <div class="relative bg-gray-800/80 backdrop-blur-sm rounded-2xl h-full flex items-center justify-center p-6 border border-gray-700 overflow-hidden">
64
+ <div class="text-left w-full">
65
+ <div class="flex justify-between items-center mb-4">
66
+ <div class="text-orange-400 font-mono">0x7f...3a4b</div>
67
+ <div class="text-green-400 font-mono">$12,450.00 USDT</div>
68
+ </div>
69
+ <div class="h-2 bg-gray-700 rounded-full mb-6 overflow-hidden">
70
+ <div class="h-full bg-gradient-to-r from-orange-500 to-purple-600 rounded-full" style="width: 65%"></div>
71
+ </div>
72
+ <div class="grid grid-cols-3 gap-4 text-center">
73
+ <div class="bg-gray-700/50 p-3 rounded-lg">
74
+ <div class="text-xs text-gray-400">Daily Release</div>
75
+ <div class="text-orange-400 font-mono">0.18%</div>
76
+ </div>
77
+ <div class="bg-gray-700/50 p-3 rounded-lg">
78
+ <div class="text-xs text-gray-400">Monthly Release</div>
79
+ <div class="text-orange-400 font-mono">5.56%</div>
80
+ </div>
81
+ <div class="bg-gray-700/50 p-3 rounded-lg">
82
+ <div class="text-xs text-gray-400">Time Lock</div>
83
+ <div class="text-orange-400 font-mono">18 Months</div>
84
+ </div>
85
+ </div>
86
+ </div>
87
+ </div>
88
+ <div class="absolute -bottom-6 -right-6 w-24 h-24 rounded-full bg-purple-600/30 blur-xl"></div>
89
+ <div class="absolute -top-6 -left-6 w-24 h-24 rounded-full bg-orange-600/30 blur-xl"></div>
90
+ </div>
91
+ </div>
92
+ </main>
93
+
94
+ <!-- Footer -->
95
+ <footer class="py-8 px-4 sm:px-12 border-t border-gray-800 mt-12">
96
+ <div class="flex flex-col md:flex-row justify-between items-center">
97
+ <div class="flex items-center space-x-2 mb-4 md:mb-0">
98
+ <i class="fas fa-fire text-xl text-orange-500 phoenix-animation"></i>
99
+ <span class="text-lg font-bold">PhoenixLocker Protocol</span>
100
+ </div>
101
+ <div class="flex space-x-6">
102
+ <a href="#" class="text-gray-400 hover:text-orange-400 transition"><i class="fab fa-twitter"></i></a>
103
+ <a href="#" class="text-gray-400 hover:text-orange-400 transition"><i class="fab fa-github"></i></a>
104
+ <a href="#" class="text-gray-400 hover:text-orange-400 transition"><i class="fab fa-discord"></i></a>
105
+ <a href="#" class="text-gray-400 hover:text-orange-400 transition"><i class="fab fa-medium"></i></a>
106
+ </div>
107
+ </div>
108
+ <div class="mt-6 text-center text-gray-500 text-sm">
109
+ © 2023 PhoenixLocker Protocol. All rights reserved.
110
+ </div>
111
+ </footer>
112
+ </div>
113
+
114
+ <script>
115
+ // Simple animation for the CTA button
116
+ document.querySelector('.bg-orange-500').addEventListener('mouseenter', function() {
117
+ this.querySelector('i').classList.add('animate-bounce');
118
+ });
119
+ document.querySelector('.bg-orange-500').addEventListener('mouseleave', function() {
120
+ this.querySelector('i').classList.remove('animate-bounce');
121
+ });
122
+ </script>
123
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=tongxiaojun/phoenixlocker-com" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
124
+ </html>