Merge pull request #807 from AnishSarkar22/fix/homepage

feat: improve homepage integrations section
This commit is contained in:
Rohan Verma 2026-02-10 14:08:43 -08:00 committed by GitHub
commit 9f335f5b3f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 280 additions and 168 deletions

View file

@ -187,5 +187,24 @@ button {
background-color: hsl(var(--muted-foreground) / 0.4);
}
/* Integrations section — vertical column auto-scroll */
@keyframes integrations-scroll-up {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-50%);
}
}
@keyframes integrations-scroll-down {
0% {
transform: translateY(-50%);
}
100% {
transform: translateY(0);
}
}
@source '../node_modules/@llamaindex/chat-ui/**/*.{ts,tsx}';
@source '../node_modules/streamdown/dist/*.js';