Center text on welcome screen (#3699)

Marshall Bowers created

This PR centers the text "Code at the speed of thought" on the welcome
screen.

Release Notes:

- N/A

Change summary

crates/welcome2/src/welcome.rs | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)

Detailed changes

crates/welcome2/src/welcome.rs 🔗

@@ -74,7 +74,11 @@ impl Render for WelcomePage {
                         .h(px(96.))
                         .mx_auto(),
                 )
-                .child(Label::new("Code at the speed of thought"))
+                .child(
+                    h_stack()
+                        .justify_center()
+                        .child(Label::new("Code at the speed of thought")),
+                )
                 .child(
                     v_stack()
                         .gap_2()