Upload index.html with huggingface_hub
Browse files- index.html +49 -0
index.html
CHANGED
|
@@ -148,6 +148,42 @@
|
|
| 148 |
font-weight: 700;
|
| 149 |
}
|
| 150 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
.footer {
|
| 152 |
text-align: center;
|
| 153 |
color: #64748b;
|
|
@@ -215,6 +251,19 @@
|
|
| 215 |
</div>
|
| 216 |
</div>
|
| 217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 218 |
<div class="footer">
|
| 219 |
© 2024 Tzamun Arabia IT Co. | Built with ❤️ in Jeddah 🇸🇦
|
| 220 |
</div>
|
|
|
|
| 148 |
font-weight: 700;
|
| 149 |
}
|
| 150 |
|
| 151 |
+
.apps-section {
|
| 152 |
+
background: rgba(30, 41, 59, 0.4);
|
| 153 |
+
border: 1px solid rgba(148, 163, 184, 0.15);
|
| 154 |
+
border-radius: 12px;
|
| 155 |
+
padding: 25px;
|
| 156 |
+
margin-bottom: 20px;
|
| 157 |
+
}
|
| 158 |
+
|
| 159 |
+
.apps-section h2 {
|
| 160 |
+
color: #e2e8f0;
|
| 161 |
+
font-size: 18px;
|
| 162 |
+
margin-bottom: 20px;
|
| 163 |
+
text-align: center;
|
| 164 |
+
}
|
| 165 |
+
|
| 166 |
+
.apps-grid {
|
| 167 |
+
display: grid;
|
| 168 |
+
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
|
| 169 |
+
gap: 20px;
|
| 170 |
+
align-items: center;
|
| 171 |
+
justify-items: center;
|
| 172 |
+
}
|
| 173 |
+
|
| 174 |
+
.app-logo {
|
| 175 |
+
max-width: 100px;
|
| 176 |
+
height: auto;
|
| 177 |
+
opacity: 0.85;
|
| 178 |
+
transition: all 0.3s ease;
|
| 179 |
+
filter: brightness(1.1);
|
| 180 |
+
}
|
| 181 |
+
|
| 182 |
+
.app-logo:hover {
|
| 183 |
+
opacity: 1;
|
| 184 |
+
transform: scale(1.05);
|
| 185 |
+
}
|
| 186 |
+
|
| 187 |
.footer {
|
| 188 |
text-align: center;
|
| 189 |
color: #64748b;
|
|
|
|
| 251 |
</div>
|
| 252 |
</div>
|
| 253 |
|
| 254 |
+
<div class="apps-section">
|
| 255 |
+
<h2>Powered by TzamunAI</h2>
|
| 256 |
+
<div class="apps-grid">
|
| 257 |
+
<img src="https://huggingface.co/spaces/TzamunAI/README/resolve/main/apps/tzamun-erp.png" alt="Tzamun ERP" class="app-logo">
|
| 258 |
+
<img src="https://huggingface.co/spaces/TzamunAI/README/resolve/main/apps/etabeb.png" alt="eTabeb" class="app-logo">
|
| 259 |
+
<img src="https://huggingface.co/spaces/TzamunAI/README/resolve/main/apps/motormind.png" alt="MotorMind" class="app-logo">
|
| 260 |
+
<img src="https://huggingface.co/spaces/TzamunAI/README/resolve/main/apps/auxly.png" alt="Auxly" class="app-logo">
|
| 261 |
+
<img src="https://huggingface.co/spaces/TzamunAI/README/resolve/main/apps/pathconnect.png" alt="PathConnect" class="app-logo">
|
| 262 |
+
<img src="https://huggingface.co/spaces/TzamunAI/README/resolve/main/apps/tzamun-tchub.png" alt="Tzamun TCHub" class="app-logo">
|
| 263 |
+
<img src="https://huggingface.co/spaces/TzamunAI/README/resolve/main/apps/arabic-english.png" alt="Arabic-English" class="app-logo">
|
| 264 |
+
</div>
|
| 265 |
+
</div>
|
| 266 |
+
|
| 267 |
<div class="footer">
|
| 268 |
© 2024 Tzamun Arabia IT Co. | Built with ❤️ in Jeddah 🇸🇦
|
| 269 |
</div>
|