File tree Expand file tree Collapse file tree 3 files changed +48
-0
lines changed
Expand file tree Collapse file tree 3 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 33from .affiliates import affiliates as affiliates
44from .blog import blog_routes
55from .booked import booked as booked
6+ from .check_your_email_demo import page_thank_you as page_thank_you
67from .customers .data .customers import customers_routes
78from .customers .landing import customers as customers
89from .databricks .databricks import databricks_page as databricks_page
1516from .gallery .apps import gallery_apps_routes
1617from .hosting .hosting import hosting_landing as hosting_landing
1718from .landing .landing import landing as landing
19+ from .meeting_successfully_booked import (
20+ page_meeting_successfully_booked as page_meeting_successfully_booked ,
21+ )
1822from .page404 import page404 as page404
1923from .pricing .pricing import pricing as pricing
2024from .sales import sales as sales
Original file line number Diff line number Diff line change 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+ )
Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments