File tree Expand file tree Collapse file tree 2 files changed +14
-5
lines changed
Expand file tree Collapse file tree 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change 55from pcweb .pages .framework .views .footer_index import footer_index
66import reflex_ui as ui
77from pcweb .pages .docs import getting_started
8+ from pcweb .meta .meta import create_meta_tags
89
910
1011def booked_title ():
@@ -25,7 +26,12 @@ def booked_title():
2526
2627@rx .page (
2728 route = "/booked" ,
28- title = "Reflex" ,
29+ title = "Call Successfully Booked | Reflex" ,
30+ meta = create_meta_tags (
31+ title = "Call Successfully Booked | Reflex" ,
32+ description = "Your call has been successfully scheduled. A confirmation email has been sent with all the details." ,
33+ image = "/previews/index_preview.png"
34+ )
2935)
3036def booked () -> rx .Component :
3137 return rx .box (
Original file line number Diff line number Diff line change 55from pcweb .pages .framework .views .footer_index import footer_index
66import reflex_ui as ui
77from pcweb .pages .docs import getting_started
8+ from pcweb .meta .meta import create_meta_tags
89
910
1011def to_be_booked_title ():
@@ -21,12 +22,14 @@ def to_be_booked_title():
2122 )
2223
2324
24-
25-
26-
2725@rx .page (
2826 route = "/to-be-booked" ,
29- title = "Reflex" ,
27+ title = "Call Request Received | Reflex" ,
28+ meta = create_meta_tags (
29+ title = "Call Request Received | Reflex" ,
30+ description = "Your request has been received. Our team will reach out to you shortly via email to schedule your call." ,
31+ image = "/previews/index_preview.png"
32+ )
3033)
3134def to_be_booked () -> rx .Component :
3235 return rx .box (
You can’t perform that action at this time.
0 commit comments