theweb3brothers commited on
Commit
0d1797c
·
verified ·
1 Parent(s): 485f76b

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +60 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Fidubot
3
- emoji: 🏆
4
- colorFrom: purple
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: fidubot
3
+ emoji: 🐳
4
+ colorFrom: red
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,60 @@
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>IKOS - Elite Membership & Investment DAO</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
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aos@2.3.4/dist/aos.css">
10
+ <style>
11
+ @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800&display=swap');
12
+
13
+ :root {
14
+ --primary: #0f172a;
15
+ --secondary: #1e293b;
16
+ --accent: #6366f1;
17
+ --gold: #f59e0b;
18
+ --text: #f8fafc;
19
+ --gradient: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
20
+ }
21
+
22
+ body {
23
+ font-family: 'Montserrat', sans-serif;
24
+ background-color: var(--primary);
25
+ color: var(--text);
26
+ overflow-x: hidden;
27
+ scroll-behavior: smooth;
28
+ }
29
+
30
+ .gradient-bg {
31
+ background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
32
+ }
33
+
34
+ .gradient-text {
35
+ background: var(--gradient);
36
+ -webkit-background-clip: text;
37
+ background-clip: text;
38
+ color: transparent;
39
+ }
40
+
41
+ .card-glass {
42
+ background: rgba(15, 23, 42, 0.7);
43
+ backdrop-filter: blur(16px);
44
+ border: 1px solid rgba(255, 255, 255, 0.1);
45
+ box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
46
+ transition: all 0.3s ease;
47
+ }
48
+
49
+ .card-glass:hover {
50
+ transform: translateY(-5px);
51
+ box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
52
+ }
53
+
54
+ .hover-scale {
55
+ transition: transform 0.3s ease;
56
+ }
57
+
58
+ .hover-scale:hover {
59
+ transform: scale(1
60
+ </html>