Skip to content

Commit fe63bc1

Browse files
committed
push
1 parent 190bf9c commit fe63bc1

File tree

11 files changed

+24
-27
lines changed

11 files changed

+24
-27
lines changed
File renamed without changes.
File renamed without changes.

pcweb/components/docpage/navbar/navbar.py

Lines changed: 17 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,27 +23,24 @@
2323

2424

2525
def resource_item(text: str, url: str, icon: str, index):
26-
return rx.el.li(
27-
rx.el.a(
28-
rx.box(
29-
ui.icon(icon, size=16, class_name="flex-shrink-0 text-slate-9"),
30-
rx.text(
31-
text,
32-
class_name="font-small text-slate-9 truncate text-start w-[150px]",
33-
),
34-
rx.icon(
35-
tag="chevron_right",
36-
size=14,
37-
stroke_width=2,
38-
class_name="flex-shrink-0 text-slate-8 ml-auto",
39-
),
40-
class_name="flex flex-row flex-nowrap items-center gap-4 hover:bg-secondary-3 px-[1.125rem] py-2 rounded-md w-full transition-colors",
26+
return rx.el.a(
27+
rx.box(
28+
ui.icon(icon, size=16, class_name="flex-shrink-0 text-slate-9"),
29+
rx.text(
30+
text,
31+
class_name="font-small text-slate-9 truncate text-start w-[150px]",
4132
),
42-
class_name="w-full text-slate-9 hover:text-slate-9",
43-
to=url,
44-
on_click=SidebarState.set_sidebar_index(index),
33+
rx.icon(
34+
tag="chevron_right",
35+
size=14,
36+
stroke_width=2,
37+
class_name="flex-shrink-0 text-slate-8 ml-auto",
38+
),
39+
class_name="flex flex-row flex-nowrap items-center gap-4 hover:bg-secondary-3 px-[1.125rem] py-2 rounded-md w-full transition-colors",
4540
),
46-
class_name="w-full",
41+
class_name="w-full text-slate-9 hover:text-slate-9",
42+
to=url,
43+
on_click=SidebarState.set_sidebar_index(index),
4744
)
4845

4946

@@ -416,7 +413,7 @@ def doc_section():
416413
unstyled=True,
417414
class_name=ui.cn(
418415
ui.navigation_menu.class_names.CONTENT,
419-
"items-start gap-1.5 gap-x-1.5 grid grid-cols-1 m-0 p-1.5 w-[280px] min-w-max",
416+
"flex flex-col gap-1.5 m-0 p-1.5 w-[280px] min-w-max h-auto",
420417
),
421418
)
422419

pcweb/components/docpage/sidebar/sidebar_items/ai.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,12 @@ def get_ai_builder_integrations():
7979
ai_builder.integrations.google_auth,
8080
ai_builder.integrations.groq,
8181
ai_builder.integrations.hubspot,
82-
ai_builder.integrations.huggingface,
82+
ai_builder.integrations.hugging_face,
8383
ai_builder.integrations.langchain,
8484
ai_builder.integrations.linear,
8585
ai_builder.integrations.notion,
8686
ai_builder.integrations.okta_auth,
87-
ai_builder.integrations.open_ai,
87+
ai_builder.integrations.openai,
8888
ai_builder.integrations.perplexity,
8989
ai_builder.integrations.replicate,
9090
ai_builder.integrations.resend,

pcweb/pages/landing/views/ai_bento.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def bento_cards() -> rx.Component:
7575
),
7676
frontend_card(
7777
title="Integrate With Tools",
78-
description="Over 15 integrations are available.",
78+
description="Over 100+ integrations are available.",
7979
image="bento2.webp",
8080
),
8181
frontend_card(

pcweb/pages/landing/views/hero.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,14 +232,14 @@ def prompt_box() -> rx.Component:
232232
class_name="animate-[prompt-box-line] animate-duration-[200ms] animate-ease-out origin-left absolute top-13 left-5 h-10 animate-delay-200 animate-fill-both pointer-events-none",
233233
),
234234
rx.el.span(
235-
"when critical metrics",
235+
"for critical metrics",
236236
# Cursor
237237
rx.el.span(
238238
class_name="w-0.5 h-8 bg-slate-12 animate-blink inline-block align-middle animate-fill-both animate-delay-450",
239239
),
240240
class_name="animate-[prompt-box-line] animate-duration-[200ms] animate-ease-out origin-left absolute top-23 left-5 h-10 animate-delay-400 animate-fill-both pointer-events-none",
241241
),
242-
class_name="text-slate-11 dark:text-slate-9 text-xl leading-[2.5rem] font-medium cursor-text",
242+
class_name="text-slate-11 dark:text-slate-9 text-xl leading-[2.5rem] font-medium cursor-text max-lg:hidden",
243243
),
244244
rx.el.div(
245245
rx.el.textarea(

0 commit comments

Comments
 (0)