Skip to content

Commit e6d3859

Browse files
committed
updates
1 parent 69b27ea commit e6d3859

File tree

2 files changed

+14
-5
lines changed

2 files changed

+14
-5
lines changed

pcweb/pages/booked.py

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from pcweb.pages.framework.views.footer_index import footer_index
66
import reflex_ui as ui
77
from pcweb.pages.docs import getting_started
8+
from pcweb.meta.meta import create_meta_tags
89

910

1011
def 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
)
3036
def booked() -> rx.Component:
3137
return rx.box(

pcweb/pages/to_be_booked.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from pcweb.pages.framework.views.footer_index import footer_index
66
import reflex_ui as ui
77
from pcweb.pages.docs import getting_started
8+
from pcweb.meta.meta import create_meta_tags
89

910

1011
def 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
)
3134
def to_be_booked() -> rx.Component:
3235
return rx.box(

0 commit comments

Comments
 (0)