diff --git a/packages/reflex-site-shared/src/reflex_site_shared/views/footer.py b/packages/reflex-site-shared/src/reflex_site_shared/views/footer.py index 9287bd56d17..da84842d801 100644 --- a/packages/reflex-site-shared/src/reflex_site_shared/views/footer.py +++ b/packages/reflex-site-shared/src/reflex_site_shared/views/footer.py @@ -304,17 +304,16 @@ def footer_index( ], ), footer_link_flex( - "Migration", + "Comparison", [ - footer_link("From No-Code", "/migration/no-code/"), - footer_link("From Low-Code", "/migration/low-code/"), + footer_link("From no/low-code", "/compare/no-code/"), footer_link( - "From Other Frameworks", - "/migration/other-frameworks/", + "Frameworks", + "/compare/frameworks/", ), footer_link( - "From Other AI Tools", - "/migration/other-ai-tools/", + "From other AI tools", + "/compare/other-ai-tools/", ), ], ), diff --git a/packages/reflex-site-shared/src/reflex_site_shared/views/marketing_footer.py b/packages/reflex-site-shared/src/reflex_site_shared/views/marketing_footer.py index 3f791040e0a..49dd546420c 100644 --- a/packages/reflex-site-shared/src/reflex_site_shared/views/marketing_footer.py +++ b/packages/reflex-site-shared/src/reflex_site_shared/views/marketing_footer.py @@ -443,12 +443,11 @@ def marketing_footer( ], ), ( - "Migration", + "Comparison", [ - ("From no-code", "/migration/no-code/"), - ("From low-code", "/migration/low-code/"), - ("From other frameworks", "/migration/other-frameworks/"), - ("From other AI tools", "/migration/other-ai-tools/"), + ("From no/low-code", "/compare/no-code/"), + ("Frameworks", "/compare/frameworks/"), + ("From other AI tools", "/compare/other-ai-tools/"), ], ), appearance=appearance,