Merge 6f961617af
into 98f50811f9
This commit is contained in:
commit
8528ef298a
Binary file not shown.
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 9.4 KiB |
@ -16,16 +16,28 @@ def index() -> rx.Component:
|
|||||||
return rx.container(
|
return rx.container(
|
||||||
rx.color_mode.button(position="top-right"),
|
rx.color_mode.button(position="top-right"),
|
||||||
rx.vstack(
|
rx.vstack(
|
||||||
rx.heading("Welcome to Reflex!", size="9"),
|
rx.heading("Welcome to Reflex ✨", size="9"),
|
||||||
rx.text(
|
rx.text(
|
||||||
"Get started by editing ",
|
"You can edit this page by modifying the code in the file below.",
|
||||||
rx.code(f"{config.app_name}/{config.app_name}.py"),
|
|
||||||
size="5",
|
|
||||||
),
|
),
|
||||||
rx.link(
|
rx.text("Need help? 🤔 Check out the documentation."),
|
||||||
rx.button("Check out our docs!"),
|
rx.code(f"{config.app_name}/{config.app_name}.py"),
|
||||||
href="https://reflex.dev/docs/getting-started/introduction/",
|
rx.text("Happy coding! 🎉"),
|
||||||
is_external=True,
|
rx.card(
|
||||||
|
rx.link(
|
||||||
|
rx.flex(
|
||||||
|
rx.avatar(src="https://reflex.dev/reflex_banner.png"),
|
||||||
|
rx.box(
|
||||||
|
rx.heading("Quick Start 🚀"),
|
||||||
|
rx.text("Get started with Reflex before your coffee ☕"),
|
||||||
|
),
|
||||||
|
spacing="3",
|
||||||
|
),
|
||||||
|
href="https://reflex.dev/docs/getting-started/introduction/",
|
||||||
|
target="_blank",
|
||||||
|
underline="none",
|
||||||
|
),
|
||||||
|
as_child=True,
|
||||||
),
|
),
|
||||||
spacing="5",
|
spacing="5",
|
||||||
justify="center",
|
justify="center",
|
||||||
|
Loading…
Reference in New Issue
Block a user