thomasht86 commited on
Commit
7296fff
·
verified ·
1 Parent(s): 7dee5f4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -10
README.md CHANGED
@@ -6,19 +6,52 @@ colorTo: gray
6
  sdk: static
7
  pinned: false
8
  ---
9
- <div style="text-align: center; font-family: Arial, sans-serif;">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
 
11
- <img src="https://firebasestorage.googleapis.com/v0/b/standards-site-beta.appspot.com/o/documents%2F80o6wjeliok%2F762pe0angxc%2FVespa-logo-dark-rgb.svg?alt=media&token=08abbba9-d10f-4041-b4ec-5993d8d366eb" alt="Vespa.ai Logo" style="width: 200px; margin: 20px auto;">
12
 
13
- <div style="font-size: 2.5em; margin: 10px 0;">Vespa.ai</div>
14
 
15
- <div style="font-size: 1.2em; margin-bottom: 20px; color: #555;">AI + data, online. At any scale.</div>
16
 
17
- <div>
18
- <a href="https://vespa.ai" style="margin: 0 10px; text-decoration: none; color: #1a0dab; font-weight: bold;">Homepage</a> |
19
- <a href="https://cloud.vespa.ai/console" style="margin: 0 10px; text-decoration: none; color: #1a0dab; font-weight: bold;">Cloud Console</a> |
20
- <a href="https://github.com/vespa-engine/vespa" style="margin: 0 10px; text-decoration: none; color: #1a0dab; font-weight: bold;">GitHub (Vespa)</a> |
21
- <a href="https://github.com/vespa-engine/pyvespa" style="margin: 0 10px; text-decoration: none; color: #1a0dab; font-weight: bold;">GitHub (PyVespa)</a>
22
  </div>
23
 
24
- </div>
 
 
6
  sdk: static
7
  pinned: false
8
  ---
9
+ <html>
10
+ <head>
11
+ <title>Vespa.ai Organization Card</title>
12
+ <style>
13
+ body {
14
+ text-align: center;
15
+ font-family: Arial, sans-serif;
16
+ }
17
+ .logo {
18
+ width: 200px;
19
+ margin: 20px auto;
20
+ }
21
+ .title {
22
+ font-size: 2.5em;
23
+ margin: 10px 0;
24
+ }
25
+ .subtitle {
26
+ font-size: 1.2em;
27
+ margin-bottom: 20px;
28
+ color: #555;
29
+ }
30
+ .links a {
31
+ margin: 0 10px;
32
+ text-decoration: none;
33
+ color: #1a0dab;
34
+ font-weight: bold;
35
+ }
36
+ .links a:hover {
37
+ text-decoration: underline;
38
+ }
39
+ </style>
40
+ </head>
41
+ <body>
42
 
43
+ <img class="logo" src="https://firebasestorage.googleapis.com/v0/b/standards-site-beta.appspot.com/o/documents%2F80o6wjeliok%2F762pe0angxc%2FVespa-logo-dark-rgb.svg?alt=media&token=08abbba9-d10f-4041-b4ec-5993d8d366eb" alt="Vespa.ai Logo">
44
 
45
+ <div class="title">Vespa.ai</div>
46
 
47
+ <div class="subtitle">AI + data, online. At any scale.</div>
48
 
49
+ <div class="links">
50
+ <a href="https://vespa.ai">Homepage</a> |
51
+ <a href="https://cloud.vespa.ai/console">Cloud Console</a> |
52
+ <a href="https://github.com/vespa-engine/vespa">GitHub (Vespa)</a> |
53
+ <a href="https://github.com/vespa-engine/pyvespa">GitHub (PyVespa)</a>
54
  </div>
55
 
56
+ </body>
57
+ </html>