Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new favicon, new blank template #4413

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified reflex/.templates/apps/blank/assets/favicon.ico
Binary file not shown.
28 changes: 20 additions & 8 deletions reflex/.templates/apps/blank/code/blank.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,28 @@ def index() -> rx.Component:
return rx.container(
rx.color_mode.button(position="top-right"),
rx.vstack(
rx.heading("Welcome to Reflex!", size="9"),
rx.heading("Welcome to Reflex", size="9"),
rx.text(
"Get started by editing ",
rx.code(f"{config.app_name}/{config.app_name}.py"),
size="5",
"You can edit this page by modifying the code in the file below.",
),
rx.link(
rx.button("Check out our docs!"),
href="https://reflex.dev/docs/getting-started/introduction/",
is_external=True,
rx.text("Need help? 🤔 Check out the documentation."),
rx.code(f"{config.app_name}/{config.app_name}.py"),
rx.text("Happy coding! 🎉"),
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",
justify="center",
Expand Down