README / index.html
jashii78's picture
Update index.html
46fcc95 verified
<!DOCTYPE html>
<html>
<head>
<title>Quantira AI</title>
<style>
body{
font-family: Arial, sans-serif;
background:#0f172a;
color:white;
text-align:center;
padding:40px;
}
h1{
font-size:48px;
margin-bottom:10px;
}
.tagline{
font-size:20px;
color:#94a3b8;
margin-bottom:40px;
}
.section{
max-width:800px;
margin:auto;
margin-bottom:40px;
}
.card{
background:#1e293b;
padding:20px;
border-radius:10px;
margin:10px;
}
.footer{
margin-top:50px;
color:#94a3b8;
}
</style>
</head>
<body>
<h1>Quantira</h1>
<div class="tagline">
Practical AI for Real-World Systems
</div>
<div class="section">
<h2>πŸš€ What We Build</h2>
<div class="card">LLM Applications</div>
<div class="card">Prompt Engineering Tools</div>
<div class="card">AI Agents & Automation</div>
<div class="card">RAG Systems</div>
<div class="card">AI Developer Tools</div>
</div>
<div class="section">
<h2>🧠 Focus Areas</h2>
<div class="card">Generative AI</div>
<div class="card">Large Language Models</div>
<div class="card">AI Agents</div>
<div class="card">Machine Learning</div>
<div class="card">Model Evaluation</div>
</div>
<div class="section">
<h2>🌍 Mission</h2>
<p>
Quantira builds applied AI tools, models, and demos focused on
practical, production-ready AI systems.
</p>
</div>
<div class="footer">
Follow Quantira for upcoming AI demos, models and experiments.
</div>
</body>
</html>