Skip to content
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
4 changes: 2 additions & 2 deletions pcweb/components/docpage/navbar/navbar.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import reflex as rx
import reflex_ui as ui
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

from pcweb.components.hosting_banner import hosting_banner
from pcweb.constants import REFLEX_BUILD_URL, REFLEX_CLOUD_URL
Expand Down Expand Up @@ -548,7 +548,7 @@ def new_component_section() -> rx.Component:
class_name="desktop-only",
),
ui.navigation_menu.item(
render_=lemcal_dialog(
render_=demo_form_dialog(
ui.button(
"Book a Demo",
size="sm",
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/databricks/views/video.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import reflex as rx
import reflex_ui as ui
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

VIDEO_URL = "https://youtu.be/Hy3uhBVRdtk?si=Z5szIyInkBfeG2lk&t=92s"

Expand Down Expand Up @@ -37,7 +37,7 @@ def text() -> rx.Component:
),
class_name="text-slate-12 lg:text-3xl text-2xl font-semibold max-w-[57rem]",
),
lemcal_dialog(
demo_form_dialog(
ui.button(
"Get Personalized Walkthrough",
size="lg",
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/demo/header.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import reflex as rx
import reflex_ui as ui
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

from pcweb.components.hosting_banner import HostingBannerState
from pcweb.pages.framework.views.companies import pricing_page_companies
Expand All @@ -18,7 +18,7 @@ def custom_quote_form() -> rx.Component:
"Enterprise-ready solutions designed for scale, compliance, and support. Contact us for a tailored quote based on your infrastructure and team size.",
class_name="text-slate-11 text-md leading-relaxed font-medium text-center max-w-xl mx-auto",
),
lemcal_dialog(
demo_form_dialog(
rx.el.div(
ui.button(
"Contact Sales",
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/gallery/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import flexdown
import reflex as rx
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

from pcweb.components.button import button, button_with_icon
from pcweb.components.code_card import gallery_app_card
Expand Down Expand Up @@ -163,7 +163,7 @@ def page(document, is_reflex_template: bool) -> rx.Component:
*(
[
rx.box(
lemcal_dialog(
demo_form_dialog(
button_with_icon(
"Book a Demo",
icon="new_tab",
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/landing/views/start_building.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import reflex as rx
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

from pcweb.components.new_button import button

Expand All @@ -22,7 +22,7 @@ def start_building() -> rx.Component:
"Start building with Reflex",
class_name="text-slate-9 text-2xl lg:text-4xl font-semibold text-center",
),
lemcal_dialog(
demo_form_dialog(
button(
"Contact sales",
size="xl",
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/pricing/faq.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import reflex as rx
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

from pcweb.components.button import button

Expand All @@ -26,7 +26,7 @@ def header() -> rx.Component:

def sales_button() -> rx.Component:
return rx.el.div(
lemcal_dialog(
demo_form_dialog(
rx.el.div(
glow(),
button(
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/pricing/plan_cards.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import reflex as rx
import reflex_ui as ui
from reflex.experimental.client_state import ClientStateVar
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

from pcweb.components.hosting_banner import HostingBannerState
from pcweb.components.number_flow import number_flow
Expand Down Expand Up @@ -254,7 +254,7 @@ def pricing_cards() -> rx.Component:
Feature("QuestionIcon", "Dedicated Support Channel"),
Feature("CustomerSupportIcon", "Onboarding support"),
],
lemcal_dialog(
demo_form_dialog(
ui.button(
"Contact sales",
variant="primary",
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/pricing/slider_calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import reflex as rx
import reflex_ui as ui
from reflex.experimental.client_state import ClientStateVar
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

from pcweb.constants import PRO_TIERS_TABLE, REFLEX_CLOUD_URL
from pcweb.pages.pricing.calculator import (
Expand Down Expand Up @@ -269,7 +269,7 @@ def total_credits_card() -> rx.Component:
),
rx.cond(
get_is_enterprise_tier(MachineState.messages_tier_index),
lemcal_dialog(
demo_form_dialog(
ui.button(
"Contact Sales",
size="sm",
Expand Down
4 changes: 2 additions & 2 deletions pcweb/pages/pricing/table.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import reflex as rx
import reflex_ui as ui
from reflex_ui.blocks.lemcal import lemcal_dialog
from reflex_ui.blocks.demo_form import demo_form_dialog

from pcweb.components.hosting_banner import HostingBannerState
from pcweb.constants import REFLEX_BUILD_URL, REFLEX_CLOUD_URL
Expand Down Expand Up @@ -230,7 +230,7 @@ def header_item(text: str, button: rx.Component) -> rx.Component:
# Enterprise column with button
header_item(
"Enterprise",
lemcal_dialog(
demo_form_dialog(
ui.button(
"Get a demo",
variant="primary",
Expand Down
Loading