Spaces:
No application file
No application file
mmm commited on
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,10 +1,152 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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>Indext Data Lab</title>
|
| 7 |
+
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Roboto:wght@300;400&display=swap" rel="stylesheet">
|
| 8 |
+
<style>
|
| 9 |
+
:root {
|
| 10 |
+
--bg-color: #ffffff;
|
| 11 |
+
--text-color: #1a1a1a;
|
| 12 |
+
--accent-color: #333333;
|
| 13 |
+
--spacing-unit: 2rem;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
body {
|
| 17 |
+
font-family: 'Roboto', sans-serif;
|
| 18 |
+
line-height: 1.6;
|
| 19 |
+
color: var(--text-color);
|
| 20 |
+
background-color: var(--bg-color);
|
| 21 |
+
margin: 0;
|
| 22 |
+
padding: 0;
|
| 23 |
+
display: flex;
|
| 24 |
+
justify-content: center;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
.container {
|
| 28 |
+
max-width: 800px; /* Limits width for that "airy" feel */
|
| 29 |
+
width: 100%;
|
| 30 |
+
padding: 4rem 2rem;
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
h1, h2, h3 {
|
| 34 |
+
font-family: 'Montserrat', sans-serif;
|
| 35 |
+
font-weight: 600;
|
| 36 |
+
letter-spacing: -0.02em;
|
| 37 |
+
margin-top: 3rem;
|
| 38 |
+
margin-bottom: 1rem;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
h1 {
|
| 42 |
+
font-size: 2.5rem;
|
| 43 |
+
margin-top: 0;
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
p {
|
| 47 |
+
font-weight: 300;
|
| 48 |
+
font-size: 1.1rem;
|
| 49 |
+
color: #4a4a4a;
|
| 50 |
+
margin-bottom: 1.5rem;
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
.project-grid {
|
| 54 |
+
display: grid;
|
| 55 |
+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
| 56 |
+
gap: 2rem;
|
| 57 |
+
margin-top: 3rem;
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
.project-card {
|
| 61 |
+
border: 1px solid #eaeaea;
|
| 62 |
+
padding: 1.5rem;
|
| 63 |
+
transition: all 0.2s ease;
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
.project-card:hover {
|
| 67 |
+
border-color: #000;
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
.project-title {
|
| 71 |
+
font-family: 'Montserrat', sans-serif;
|
| 72 |
+
font-weight: 600;
|
| 73 |
+
font-size: 1.2rem;
|
| 74 |
+
margin-bottom: 0.5rem;
|
| 75 |
+
display: block;
|
| 76 |
+
}
|
| 77 |
+
|
| 78 |
+
.tag {
|
| 79 |
+
display: inline-block;
|
| 80 |
+
background: #f4f4f4;
|
| 81 |
+
padding: 0.25rem 0.5rem;
|
| 82 |
+
font-size: 0.75rem;
|
| 83 |
+
font-family: 'Montserrat', sans-serif;
|
| 84 |
+
margin-bottom: 1rem;
|
| 85 |
+
border-radius: 2px;
|
| 86 |
+
}
|
| 87 |
+
|
| 88 |
+
a {
|
| 89 |
+
color: inherit;
|
| 90 |
+
text-decoration: none;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
.footer {
|
| 94 |
+
margin-top: 5rem;
|
| 95 |
+
padding-top: 2rem;
|
| 96 |
+
border-top: 1px solid #eaeaea;
|
| 97 |
+
font-size: 0.9rem;
|
| 98 |
+
color: #888;
|
| 99 |
+
}
|
| 100 |
+
</style>
|
| 101 |
+
</head>
|
| 102 |
+
<body>
|
| 103 |
+
|
| 104 |
+
<div class="container">
|
| 105 |
+
<header>
|
| 106 |
+
<h1>Indext Data Lab</h1>
|
| 107 |
+
<p>
|
| 108 |
+
Specialized AI/ML architecture and MLOps. We build transparent, scalable infrastructure for data-intensive applications.
|
| 109 |
+
</p>
|
| 110 |
+
<p>
|
| 111 |
+
No black boxes. Just engineered stability for founders.
|
| 112 |
+
</p>
|
| 113 |
+
</header>
|
| 114 |
+
|
| 115 |
+
<section>
|
| 116 |
+
<div class="project-grid">
|
| 117 |
+
|
| 118 |
+
<a href="#" class="project-card">
|
| 119 |
+
<span class="tag">Analytics</span>
|
| 120 |
+
<span class="project-title">SiftScore</span>
|
| 121 |
+
<p style="font-size: 0.95rem;">
|
| 122 |
+
Automated scoring infrastructure for high-volume data inputs.
|
| 123 |
+
</p>
|
| 124 |
+
</a>
|
| 125 |
+
|
| 126 |
+
<a href="#" class="project-card">
|
| 127 |
+
<span class="tag">Predictive</span>
|
| 128 |
+
<span class="project-title">Nostrada</span>
|
| 129 |
+
<p style="font-size: 0.95rem;">
|
| 130 |
+
Forecasting models deployed with rigorous version control.
|
| 131 |
+
</p>
|
| 132 |
+
</a>
|
| 133 |
+
|
| 134 |
+
<a href="#" class="project-card">
|
| 135 |
+
<span class="tag">Agentic AI</span>
|
| 136 |
+
<span class="project-title">Sakercanine</span>
|
| 137 |
+
<p style="font-size: 0.95rem;">
|
| 138 |
+
Custom agent bot solutions for complex workflow automation.
|
| 139 |
+
</p>
|
| 140 |
+
</a>
|
| 141 |
+
|
| 142 |
+
</div>
|
| 143 |
+
</section>
|
| 144 |
+
|
| 145 |
+
<div class="footer">
|
| 146 |
+
<p>© 2026 Indext Data Lab. <br>
|
| 147 |
+
<a href="https://indext.io" style="text-decoration: underline;">Visit indext.io</a> for the Delivery Protocol.</p>
|
| 148 |
+
</div>
|
| 149 |
+
</div>
|
| 150 |
+
|
| 151 |
+
</body>
|
| 152 |
+
</html>
|