jashii78 commited on
Commit
46fcc95
·
verified ·
1 Parent(s): ef0c539

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +87 -18
index.html CHANGED
@@ -1,19 +1,88 @@
1
- <!doctype html>
2
  <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
  <html>
3
+ <head>
4
+ <title>Quantira AI</title>
5
+
6
+ <style>
7
+ body{
8
+ font-family: Arial, sans-serif;
9
+ background:#0f172a;
10
+ color:white;
11
+ text-align:center;
12
+ padding:40px;
13
+ }
14
+
15
+ h1{
16
+ font-size:48px;
17
+ margin-bottom:10px;
18
+ }
19
+
20
+ .tagline{
21
+ font-size:20px;
22
+ color:#94a3b8;
23
+ margin-bottom:40px;
24
+ }
25
+
26
+ .section{
27
+ max-width:800px;
28
+ margin:auto;
29
+ margin-bottom:40px;
30
+ }
31
+
32
+ .card{
33
+ background:#1e293b;
34
+ padding:20px;
35
+ border-radius:10px;
36
+ margin:10px;
37
+ }
38
+
39
+ .footer{
40
+ margin-top:50px;
41
+ color:#94a3b8;
42
+ }
43
+ </style>
44
+ </head>
45
+
46
+ <body>
47
+
48
+ <h1>Quantira</h1>
49
+ <div class="tagline">
50
+ Practical AI for Real-World Systems
51
+ </div>
52
+
53
+ <div class="section">
54
+ <h2>🚀 What We Build</h2>
55
+
56
+ <div class="card">LLM Applications</div>
57
+ <div class="card">Prompt Engineering Tools</div>
58
+ <div class="card">AI Agents & Automation</div>
59
+ <div class="card">RAG Systems</div>
60
+ <div class="card">AI Developer Tools</div>
61
+
62
+ </div>
63
+
64
+ <div class="section">
65
+ <h2>🧠 Focus Areas</h2>
66
+
67
+ <div class="card">Generative AI</div>
68
+ <div class="card">Large Language Models</div>
69
+ <div class="card">AI Agents</div>
70
+ <div class="card">Machine Learning</div>
71
+ <div class="card">Model Evaluation</div>
72
+
73
+ </div>
74
+
75
+ <div class="section">
76
+ <h2>🌍 Mission</h2>
77
+ <p>
78
+ Quantira builds applied AI tools, models, and demos focused on
79
+ practical, production-ready AI systems.
80
+ </p>
81
+ </div>
82
+
83
+ <div class="footer">
84
+ Follow Quantira for upcoming AI demos, models and experiments.
85
+ </div>
86
+
87
+ </body>
88
+ </html>