--- title: Navigation and pages slug: /develop/api-reference/navigation --- # Navigation and pages screenshot

Page link

Display a link to another page in a multipage app. ```python st.page_link("app.py", label="Home", icon="🏠") st.page_link("pages/profile.py", label="Profile") ```

Switch page

Programmatically navigates to a specified page. ```python st.switch_page("pages/my_page.py") ```