Spaces:
Running
Running
Upload folder using huggingface_hub
Browse files- README.md +6 -2
- index.html +105 -0
README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
---
|
| 2 |
-
title:
|
| 3 |
emoji: π
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: purple
|
|
@@ -7,4 +7,8 @@ sdk: static
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
title: RaxCore
|
| 3 |
emoji: π
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: purple
|
|
|
|
| 7 |
pinned: false
|
| 8 |
---
|
| 9 |
|
| 10 |
+
# RaxCore Technologies π
|
| 11 |
+
|
| 12 |
+
**The Premier AI Innovation Company in Africa and Global Markets**
|
| 13 |
+
|
| 14 |
+
Pioneering breakthrough AI technologies from Cape Town and Lagos to serve the world.
|
index.html
ADDED
|
@@ -0,0 +1,105 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>RaxCore Technologies</title>
|
| 7 |
+
<style>
|
| 8 |
+
* { margin: 0; padding: 0; box-sizing: border-box; }
|
| 9 |
+
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #333; }
|
| 10 |
+
.hero { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); color: white; padding: 80px 20px; text-align: center; }
|
| 11 |
+
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
|
| 12 |
+
.tagline { font-size: 1.3rem; margin-bottom: 30px; opacity: 0.9; }
|
| 13 |
+
.badges { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
|
| 14 |
+
.badge { background: rgba(255, 255, 255, 0.1); padding: 8px 16px; border-radius: 25px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); }
|
| 15 |
+
section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
|
| 16 |
+
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; color: white; }
|
| 17 |
+
.models { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 20px; margin: 40px 20px; }
|
| 18 |
+
.model-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
|
| 19 |
+
.model-card { background: white; padding: 30px; border-radius: 15px; text-align: center; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease; }
|
| 20 |
+
.model-card:hover { transform: translateY(-5px); }
|
| 21 |
+
.model-card h3 { font-size: 1.8rem; margin-bottom: 10px; color: #1a1a2e; }
|
| 22 |
+
.btn { display: inline-block; background: linear-gradient(45deg, #ff6b6b, #4ecdc4); color: white; padding: 12px 24px; text-decoration: none; border-radius: 25px; margin-top: 15px; transition: transform 0.3s ease; }
|
| 23 |
+
.btn:hover { transform: scale(1.05); }
|
| 24 |
+
.features { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); border-radius: 20px; margin: 40px 20px; }
|
| 25 |
+
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
|
| 26 |
+
.feature { background: white; padding: 25px; border-radius: 15px; text-align: center; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); }
|
| 27 |
+
.feature h3 { font-size: 1.3rem; margin-bottom: 10px; color: #1a1a2e; }
|
| 28 |
+
.contact { text-align: center; }
|
| 29 |
+
.contact-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
|
| 30 |
+
.contact-btn { background: rgba(255, 255, 255, 0.2); color: white; padding: 15px 30px; text-decoration: none; border-radius: 30px; backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.3); transition: all 0.3s ease; }
|
| 31 |
+
.contact-btn:hover { background: rgba(255, 255, 255, 0.3); transform: translateY(-2px); }
|
| 32 |
+
footer { background: #1a1a2e; color: white; padding: 40px 20px; text-align: center; }
|
| 33 |
+
.social { margin-top: 20px; display: flex; justify-content: center; gap: 20px; }
|
| 34 |
+
.social a { color: #4ecdc4; text-decoration: none; transition: color 0.3s ease; }
|
| 35 |
+
.social a:hover { color: #ff6b6b; }
|
| 36 |
+
</style>
|
| 37 |
+
</head>
|
| 38 |
+
<body>
|
| 39 |
+
<div class="hero">
|
| 40 |
+
<h1>π RaxCore Technologies</h1>
|
| 41 |
+
<p class="tagline">The Premier AI Innovation Company in Africa and Global Markets</p>
|
| 42 |
+
<div class="badges">
|
| 43 |
+
<span class="badge">π Best AI Innovation 2024</span>
|
| 44 |
+
<span class="badge">π° $50M Series A</span>
|
| 45 |
+
<span class="badge">π 20+ Countries</span>
|
| 46 |
+
</div>
|
| 47 |
+
</div>
|
| 48 |
+
|
| 49 |
+
<section class="models">
|
| 50 |
+
<h2>π€ Our AI Models</h2>
|
| 51 |
+
<div class="model-grid">
|
| 52 |
+
<div class="model-card">
|
| 53 |
+
<h3>Rax 4</h3>
|
| 54 |
+
<p>3.8B Parameters β’ Enterprise Edition</p>
|
| 55 |
+
<a href="https://huggingface.co/raxcore-dev/rax-4" class="btn">Try Model</a>
|
| 56 |
+
</div>
|
| 57 |
+
<div class="model-card">
|
| 58 |
+
<h3>Rax 3.5 Chat</h3>
|
| 59 |
+
<p>1.1B Parameters β’ Efficient Chat</p>
|
| 60 |
+
<a href="https://huggingface.co/raxcore-dev/rax-3.5-chat" class="btn">Try Model</a>
|
| 61 |
+
</div>
|
| 62 |
+
</div>
|
| 63 |
+
</section>
|
| 64 |
+
|
| 65 |
+
<section class="features">
|
| 66 |
+
<h2>π Why RaxCore?</h2>
|
| 67 |
+
<div class="feature-grid">
|
| 68 |
+
<div class="feature">
|
| 69 |
+
<h3>β‘ 340% Performance Boost</h3>
|
| 70 |
+
<p>Quantum-inspired algorithms deliver superior results</p>
|
| 71 |
+
</div>
|
| 72 |
+
<div class="feature">
|
| 73 |
+
<h3>π African Innovation</h3>
|
| 74 |
+
<p>Unique perspective from Cape Town and Lagos</p>
|
| 75 |
+
</div>
|
| 76 |
+
<div class="feature">
|
| 77 |
+
<h3>π’ Enterprise Ready</h3>
|
| 78 |
+
<p>99.99% uptime with military-grade security</p>
|
| 79 |
+
</div>
|
| 80 |
+
<div class="feature">
|
| 81 |
+
<h3>π€ Cultural Intelligence</h3>
|
| 82 |
+
<p>AI that understands diverse global contexts</p>
|
| 83 |
+
</div>
|
| 84 |
+
</div>
|
| 85 |
+
</section>
|
| 86 |
+
|
| 87 |
+
<section class="contact">
|
| 88 |
+
<h2>π Get Started</h2>
|
| 89 |
+
<div class="contact-grid">
|
| 90 |
+
<a href="mailto:[email protected]" class="contact-btn">πΌ Enterprise Sales</a>
|
| 91 |
+
<a href="mailto:[email protected]" class="contact-btn">π¬ Research Partnership</a>
|
| 92 |
+
<a href="https://huggingface.co/raxcore-dev" class="contact-btn">π€ View All Models</a>
|
| 93 |
+
</div>
|
| 94 |
+
</section>
|
| 95 |
+
|
| 96 |
+
<footer>
|
| 97 |
+
<p>Β© 2024 RaxCore Technologies - Pioneering AI from Africa to the World</p>
|
| 98 |
+
<div class="social">
|
| 99 |
+
<a href="https://www.raxcore.dev">π Website</a>
|
| 100 |
+
<a href="https://linkedin.com/company/raxcore">πΌ LinkedIn</a>
|
| 101 |
+
<a href="https://github.com/raxcore-dev">π» GitHub</a>
|
| 102 |
+
</div>
|
| 103 |
+
</footer>
|
| 104 |
+
</body>
|
| 105 |
+
</html>
|