mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-25 14:08:30 +02:00
Fix a broken paragraph in the Dust case study, and the card's screen reader output (#2680)
Three defects found auditing the merged quote work. The Dust card at "solution of choice" had no blank line before or after it, so it rendered inside the paragraph. A <figure> implicitly closes a <p>, which left the following 60 words as a bare text node outside any paragraph: 16px instead of 18px, tighter leading, and no bottom margin. This is live on qdrant.tech today. Adding the blank lines restores it; the file's words are unchanged, only whitespace. The card also hid the company from screen readers. The logo carried alt="", and the company name is display:none whenever a logo is present, so on desktop a screen reader got the name and role and no company at all. The logo now uses the company as its alt text, which is what it conveys. The avatar becomes alt="" for the opposite reason - the name sits right beside it, so repeating it just made the name announce twice. Also restores the trailing newline on case-study-bayer.md. Co-authored-by: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 5
parent
216a4c3ebc
commit
b2fb2ce337
@@ -248,4 +248,4 @@ Bayer started with a Redis prototype and a thousand users. Three years later, it
|
||||
text="We're turning into the AI search engine for the company. There are various applications for a vector database even beyond simple RAG, beyond the chatbot. It supports memory for the agent, it powers enterprise search, and it lets any team build their own multimodal search engine on top."
|
||||
name="Hooman Sedghamiz"
|
||||
role="Senior Director AI/ML - Precision Medicine & Insights"
|
||||
company="Bayer" >}}
|
||||
company="Bayer" >}}
|
||||
|
||||
@@ -62,11 +62,15 @@ strategy with the embeddings models and performs retrieval augmented generation.
|
||||
|
||||
For this, Dust required a vector database and evaluated different options
|
||||
including Pinecone and Weaviate, but ultimately decided on Qdrant as the
|
||||
solution of choice. {{< quote
|
||||
solution of choice.
|
||||
|
||||
{{< quote
|
||||
text="We particularly liked Qdrant because it is open-source, written in Rust, and it has a well-designed API."
|
||||
name="Stanislas Polu"
|
||||
role="Co-Founder"
|
||||
company="Dust" >}} For example, Dust
|
||||
company="Dust" >}}
|
||||
|
||||
For example, Dust
|
||||
was looking for high control and visibility in the context of their rapidly
|
||||
scaling demand, which made the fact that Qdrant is open-source a key driver for
|
||||
selecting Qdrant. Also, Dust's existing system which is interfacing with Qdrant,
|
||||
|
||||
@@ -52,7 +52,7 @@
|
||||
<img
|
||||
class="customer-quote__avatar"
|
||||
src="{{ . }}"
|
||||
alt="{{ $name }}"
|
||||
alt=""
|
||||
width="48"
|
||||
height="48"
|
||||
loading="lazy"
|
||||
@@ -72,7 +72,12 @@
|
||||
{{- end }}
|
||||
</div>
|
||||
{{- with $logo }}
|
||||
<img class="customer-quote__logo" src="{{ . }}" alt="" loading="lazy" />
|
||||
<img
|
||||
class="customer-quote__logo"
|
||||
src="{{ . }}"
|
||||
alt="{{ with $company }}{{ . }}{{ end }}"
|
||||
loading="lazy"
|
||||
/>
|
||||
{{- end }}
|
||||
</figcaption>
|
||||
{{- end }}
|
||||
|
||||
Reference in New Issue
Block a user