Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add AI Agents blocks #1339

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion qdrant-landing/content/headless/main/vectors.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,10 @@ featureCards:
link:
text: Learn More
url: /data-analysis-anomaly-detection/
---
- id: 4
title: AI Agents
content: Unlock the full potential of your AI agents with Qdrant’s powerful vector search and scalable infrastructure, allowing them to handle complex tasks, adapt in real time, and drive smarter, data-driven outcomes across any environment.
link:
text: Learn More
url: /ai-agents/
---
8 changes: 7 additions & 1 deletion qdrant-landing/content/use-cases/vectors-use-case.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,10 @@ featureCards:
link:
text: Learn More
url: /data-analysis-anomaly-detection/
---
- id: 4
title: AI Agents
content: Unlock the full potential of your AI agents with Qdrant’s powerful vector search and scalable infrastructure, allowing them to handle complex tasks, adapt in real time, and drive smarter, data-driven outcomes across any environment.
link:
text: Learn More
url: /ai-agents/
---
33 changes: 23 additions & 10 deletions qdrant-landing/themes/qdrant-2024/assets/css/partials/_vectors.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,13 @@
display: flex;
flex-direction: column;
gap: $spacer * 5;

& > div:first-child {
.vectors__card-image {
height: pxToRem(256);
margin-bottom: -$spacer * 2;
}
}
}

&__card {
Expand Down Expand Up @@ -87,7 +94,10 @@
}

@include media-breakpoint-up(xl) {
padding-bottom: $spacer * 10;

&__header {
padding-top: $spacer * 7.5;
padding-bottom: $spacer * 7.5;
}

Expand All @@ -105,6 +115,19 @@

&__cards {
gap: $spacer * 10;

& > div:first-child {
.vectors__card-image {
height: pxToRem(392);
}
}

& > div:last-of-type {
.vectors__card-title {
font-size: map-get($font-sizes, 2);
line-height: pxToRem(67);
}
}
}

&__card {
Expand Down Expand Up @@ -139,16 +162,6 @@
}
}

.vectors__card:first-child {
.vectors__card-image {
height: pxToRem(256);

@include media-breakpoint-up(xl) {
height: pxToRem(392);
}
}
}

.vectors-use-case {
.vectors__header {
padding-top: $spacer * 2.5;
Expand Down
Loading