thomasht86 commited on
Commit
7855079
·
verified ·
1 Parent(s): 6914fba

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -58
README.md CHANGED
@@ -7,63 +7,24 @@ sdk: static
7
  pinned: false
8
  ---
9
 
10
- <div class="grid lg:grid-cols-3 gap-x-4 gap-y-7">
11
- <!-- Introduction paragraph -->
12
- <p class="lg:col-span-3">
13
- Vespa.ai offers AI + data solutions online, at any scale. It's an open-source big data serving engine that allows you to build applications requiring large-scale data processing with low-latency responses.
14
- </p>
15
- <!-- Vespa.ai Website -->
16
- <a href="https://vespa.ai" class="block overflow-hidden group">
17
- <div class="w-full h-40 object-cover mb-2 rounded-lg flex items-center justify-center bg-[#ECFAFF]">
18
- <img alt="Vespa.ai 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" class="w-40" />
19
- </div>
20
- <div class="underline">Vespa.ai Website</div>
21
- </a>
22
- <!-- Vespa Cloud Console -->
23
- <a href="https://cloud.vespa.ai/console" class="block overflow-hidden group">
24
- <div class="flex items-center h-40 bg-[#ECFAFF] rounded-lg px-4 mb-2">
25
- <div class="text-center">
26
- <h3 class="text-lg font-semibold mb-2">Vespa Cloud Console</h3>
27
- <p class="text-sm">Deploy and manage your Vespa applications in the cloud.</p>
28
- </div>
29
- </div>
30
- <div class="underline">Access Cloud Console</div>
31
- </a>
32
- <!-- Vespa GitHub Repository -->
33
- <a href="https://github.com/vespa-engine/vespa" class="block overflow-hidden">
34
- <div class="flex items-center h-40 bg-[#ECFAFF] rounded-lg px-4 mb-2">
35
- <pre class="break-words leading-1 whitespace-pre-line text-xs text-gray-800">
36
- git clone https://github.com/vespa-engine/vespa.git
37
- </pre>
38
- </div>
39
- <div class="underline">Vespa GitHub Repository</div>
40
- </a>
41
- <!-- PyVespa GitHub Repository -->
42
- <a href="https://github.com/vespa-engine/pyvespa" class="block overflow-hidden group">
43
- <div class="flex items-center h-40 bg-[#ECFAFF] rounded-lg px-4 mb-2">
44
- <pre class="break-words leading-1 whitespace-pre-line text-xs text-gray-800">
45
- pip install pyvespa
46
- </pre>
47
- </div>
48
- <div class="underline">PyVespa GitHub Repository</div>
49
- </a>
50
- <!-- Additional Information -->
51
- <div class="lg:col-span-3">
52
- <p class="mb-4">
53
- Get started with Vespa and PyVespa to build scalable applications with real-time data processing capabilities.
54
- </p>
55
- <div class="p-4 bg-gradient-to-b from-gray-50-to-white border border-gray-100 rounded-lg relative mb-4">
56
- <pre class="break-words leading-1 whitespace-pre-line text-xs md:text-sm text-gray-800">
57
- # Install Vespa Docker Image
58
- docker run --detach --name vespa --hostname vespa-container --publish 8080:8080 vespaengine/vespa
59
-
60
- # Connect using PyVespa
61
- from vespa.application import Vespa
62
- app = Vespa(url="http://localhost", port=8080)
63
- </pre>
64
- </div>
65
- <p>
66
- More information: <a href="https://docs.vespa.ai" class="underline">Vespa Documentation</a>
67
- </p>
68
  </div>
69
  </div>
 
7
  pinned: false
8
  ---
9
 
10
+ <div class="grid lg:grid-cols-1 gap-y-7">
11
+ <!-- Logo -->
12
+ <div class="flex items-center justify-center">
13
+ <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" class="w-40 mb-4" />
14
+ </div>
15
+ <!-- Title and Subtitle -->
16
+ <div class="text-center">
17
+ <h1 class="text-4xl font-bold mb-2">Vespa.ai</h1>
18
+ <p class="text-xl text-gray-600 mb-4">AI + data, online. At any scale.</p>
19
+ </div>
20
+ <!-- Links -->
21
+ <div class="flex justify-center space-x-4">
22
+ <a href="https://vespa.ai" class="text-blue-600 font-semibold hover:underline">Homepage</a>
23
+ <span>|</span>
24
+ <a href="https://cloud.vespa.ai/console" class="text-blue-600 font-semibold hover:underline">Cloud Console</a>
25
+ <span>|</span>
26
+ <a href="https://github.com/vespa-engine/vespa" class="text-blue-600 font-semibold hover:underline">GitHub (Vespa)</a>
27
+ <span>|</span>
28
+ <a href="https://github.com/vespa-engine/pyvespa" class="text-blue-600 font-semibold hover:underline">GitHub (PyVespa)</a>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  </div>
30
  </div>