Update README.md
Browse files
README.md
CHANGED
@@ -7,25 +7,160 @@ sdk: static
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
<
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
pinned: false
|
8 |
---
|
9 |
|
10 |
+
<!DOCTYPE html>
|
11 |
+
<html lang="en">
|
12 |
+
<head>
|
13 |
+
<meta charset="UTF-8">
|
14 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
15 |
+
<title>AIXON Lab - Amazing AI Creators</title>
|
16 |
+
<style>
|
17 |
+
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');
|
18 |
+
|
19 |
+
body {
|
20 |
+
margin: 0;
|
21 |
+
padding: 0;
|
22 |
+
display: flex;
|
23 |
+
justify-content: center;
|
24 |
+
align-items: center;
|
25 |
+
min-height: 100vh;
|
26 |
+
background: #000;
|
27 |
+
font-family: 'Orbitron', sans-serif;
|
28 |
+
}
|
29 |
+
|
30 |
+
.org-card {
|
31 |
+
width: 400px;
|
32 |
+
height: 600px;
|
33 |
+
background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1080&q=80') center/cover no-repeat;
|
34 |
+
border-radius: 20px;
|
35 |
+
overflow: hidden;
|
36 |
+
position: relative;
|
37 |
+
box-shadow: 0 0 50px rgba(0, 255, 255, 0.5);
|
38 |
+
transition: all 0.3s ease;
|
39 |
+
}
|
40 |
+
|
41 |
+
.org-card:hover {
|
42 |
+
transform: scale(1.05);
|
43 |
+
box-shadow: 0 0 100px rgba(0, 255, 255, 0.8);
|
44 |
+
}
|
45 |
+
|
46 |
+
.org-content {
|
47 |
+
position: absolute;
|
48 |
+
top: 0;
|
49 |
+
left: 0;
|
50 |
+
right: 0;
|
51 |
+
bottom: 0;
|
52 |
+
background: rgba(0, 0, 0, 0.7);
|
53 |
+
color: #fff;
|
54 |
+
padding: 30px;
|
55 |
+
display: flex;
|
56 |
+
flex-direction: column;
|
57 |
+
justify-content: space-between;
|
58 |
+
}
|
59 |
+
|
60 |
+
h2 {
|
61 |
+
font-size: 2.5em;
|
62 |
+
margin: 0;
|
63 |
+
text-shadow: 0 0 10px cyan;
|
64 |
+
}
|
65 |
+
|
66 |
+
.org-description {
|
67 |
+
font-size: 1.2em;
|
68 |
+
margin: 10px 0;
|
69 |
+
}
|
70 |
+
|
71 |
+
.org-specialties {
|
72 |
+
margin: 20px 0;
|
73 |
+
}
|
74 |
+
|
75 |
+
.org-specialties h3 {
|
76 |
+
color: cyan;
|
77 |
+
margin-bottom: 10px;
|
78 |
+
}
|
79 |
+
|
80 |
+
.org-specialties ul {
|
81 |
+
list-style-type: none;
|
82 |
+
padding: 0;
|
83 |
+
}
|
84 |
+
|
85 |
+
.org-specialties li {
|
86 |
+
margin: 5px 0;
|
87 |
+
padding-left: 20px;
|
88 |
+
position: relative;
|
89 |
+
}
|
90 |
+
|
91 |
+
.org-specialties li::before {
|
92 |
+
content: '▶';
|
93 |
+
position: absolute;
|
94 |
+
left: 0;
|
95 |
+
color: cyan;
|
96 |
+
}
|
97 |
+
|
98 |
+
.org-stats {
|
99 |
+
display: flex;
|
100 |
+
justify-content: space-around;
|
101 |
+
margin-top: 20px;
|
102 |
+
}
|
103 |
+
|
104 |
+
.stat {
|
105 |
+
text-align: center;
|
106 |
+
}
|
107 |
+
|
108 |
+
.stat-value {
|
109 |
+
font-size: 2em;
|
110 |
+
color: cyan;
|
111 |
+
}
|
112 |
+
|
113 |
+
.org-link {
|
114 |
+
display: inline-block;
|
115 |
+
margin-top: 20px;
|
116 |
+
padding: 10px 20px;
|
117 |
+
background: cyan;
|
118 |
+
color: #000;
|
119 |
+
text-decoration: none;
|
120 |
+
border-radius: 5px;
|
121 |
+
transition: all 0.3s ease;
|
122 |
+
}
|
123 |
+
|
124 |
+
.org-link:hover {
|
125 |
+
background: #fff;
|
126 |
+
color: #000;
|
127 |
+
box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
|
128 |
+
}
|
129 |
+
</style>
|
130 |
+
</head>
|
131 |
+
<body>
|
132 |
+
<div class="org-card">
|
133 |
+
<div class="org-content">
|
134 |
+
<div>
|
135 |
+
<h2>AIXON Lab</h2>
|
136 |
+
<p class="org-description">Creators of amazing AI-based models and tools</p>
|
137 |
+
|
138 |
+
<div class="org-specialties">
|
139 |
+
<h3>Specialties:</h3>
|
140 |
+
<ul>
|
141 |
+
<li>LoRAs for Flux SDXL</li>
|
142 |
+
<li>LLM Finetuning</li>
|
143 |
+
<li>LLM Merging</li>
|
144 |
+
<li>ComfyUI Nodes</li>
|
145 |
+
</ul>
|
146 |
+
</div>
|
147 |
+
</div>
|
148 |
+
|
149 |
+
<div>
|
150 |
+
<div class="org-stats">
|
151 |
+
<div class="stat">
|
152 |
+
<div class="stat-value">16</div>
|
153 |
+
<div>Models</div>
|
154 |
+
</div>
|
155 |
+
<div class="stat">
|
156 |
+
<div class="stat-value">1</div>
|
157 |
+
<div>Likes</div>
|
158 |
+
</div>
|
159 |
+
</div>
|
160 |
+
|
161 |
+
<a href="https://huggingface.co/aixonlab" class="org-link">View on Hugging Face</a>
|
162 |
+
</div>
|
163 |
+
</div>
|
164 |
+
</div>
|
165 |
+
</body>
|
166 |
+
</html>
|