Skip to content

Commit 0d5bab1

Browse files
authored
add thank you and meeting success pages (#1718)
1 parent 4c21028 commit 0d5bab1

File tree

3 files changed

+48
-0
lines changed

3 files changed

+48
-0
lines changed

pcweb/pages/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from .affiliates import affiliates as affiliates
44
from .blog import blog_routes
55
from .booked import booked as booked
6+
from .check_your_email_demo import page_thank_you as page_thank_you
67
from .customers.data.customers import customers_routes
78
from .customers.landing import customers as customers
89
from .databricks.databricks import databricks_page as databricks_page
@@ -15,6 +16,9 @@
1516
from .gallery.apps import gallery_apps_routes
1617
from .hosting.hosting import hosting_landing as hosting_landing
1718
from .landing.landing import landing as landing
19+
from .meeting_successfully_booked import (
20+
page_meeting_successfully_booked as page_meeting_successfully_booked,
21+
)
1822
from .page404 import page404 as page404
1923
from .pricing.pricing import pricing as pricing
2024
from .sales import sales as sales
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import reflex as rx
2+
3+
from pcweb.flexdown import markdown_with_shiki
4+
from pcweb.templates.webpage import webpage
5+
6+
contents = """
7+
# Thanks for Submitting a Demo Request
8+
9+
Check your email, we sent a calendar link to get access.
10+
"""
11+
12+
13+
@webpage(
14+
path="/thank-you",
15+
title="Thanks for Submitting a Demo Request · Reflex.dev",
16+
add_as_page=False,
17+
)
18+
def page_thank_you():
19+
return rx.box(
20+
markdown_with_shiki(contents),
21+
class_name="h-[80vh] w-full flex flex-col items-center justify-center",
22+
)
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
import reflex as rx
2+
3+
from pcweb.flexdown import markdown_with_shiki
4+
from pcweb.templates.webpage import webpage
5+
6+
contents = """
7+
# Thanks for Submitting a Demo Request
8+
9+
Meeting successfully booked!
10+
"""
11+
12+
13+
@webpage(
14+
path="/meeting-successfully-booked",
15+
title="Meeting Successfully Booked · Reflex.dev",
16+
add_as_page=False,
17+
)
18+
def page_meeting_successfully_booked():
19+
return rx.box(
20+
markdown_with_shiki(contents),
21+
class_name="h-[80vh] w-full flex flex-col items-center justify-center",
22+
)

0 commit comments

Comments
 (0)