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

Reorganize Menus: Get Started and Concepts (no tutorials) #261

Open
wants to merge 26 commits into
base: main
Choose a base branch
from

Conversation

chendaniely
Copy link
Collaborator

@chendaniely chendaniely commented Mar 14, 2025

Just the get started and concept pages from #250 4751da3
does not include the tutorials.

Does a re-write for the get started introduction, and fixes up the install, create and run pages to include Positron.

  • Before we merge this, we should decide where the "Learn Shiny" Button links to on the main index page, or maybe we call that get started and link to the first get started page.

I have a few other ideas for the home page, but that can be a separate PR/discussion

@chendaniely chendaniely self-assigned this Mar 14, 2025
@github-actions github-actions bot temporarily deployed to pr-261 March 14, 2025 07:34 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 14, 2025 07:42 Destroyed
@chendaniely chendaniely requested a review from gadenbuie March 14, 2025 08:06
@github-actions github-actions bot temporarily deployed to pr-261 March 14, 2025 08:33 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 15, 2025 04:41 Destroyed
@gadenbuie
Copy link
Contributor

  • Before we merge this, we should decide where the "Learn Shiny" Button links to on the main index page, or maybe we call that get started and link to the first get started page.

Let's link "Learn Shiny" to the first Get Started page

@github-actions github-actions bot temporarily deployed to pr-261 March 17, 2025 22:37 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 17, 2025 23:55 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 18, 2025 01:47 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 18, 2025 06:20 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 21, 2025 17:37 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 24, 2025 18:41 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 28, 2025 04:47 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 28, 2025 04:49 Destroyed
@github-actions github-actions bot temporarily deployed to pr-261 March 28, 2025 17:03 Destroyed
@chendaniely chendaniely requested a review from gadenbuie April 2, 2025 06:37
Comment on lines +15 to +33
Create efficient, reactive, and robust web applications and dashboards.

![Code of example shiny application](assets/code-welcome.png){class="img-shadow"}

```python
# | standalone: true

from shiny.express import ui, render, input
import seaborn as sns

df = sns.load_dataset("penguins")

ui.input_slider("bins", "Number of Bins", min=5, max=20, value=15, step=1)


@render.plot
def plot():
ax = sns.histplot(data=df, x="body_mass_g", bins=input.bins())
```
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

image

i envision this section being some kind of animation of an application.

Comment on lines +54 to +63
<!--
Sample of component gallery mini docs that link to component
-->

- slider
- selectize
- date
- map
- plotly
- valuebox
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this section here would be a few examples of inputs and outputs that look like small cards like the components gallery.

Comment on lines +152 to +161
The Python inputs return regular HTML:

```python
>>> from shiny import ui
>>> ui.input_action_button("btn", "Button")
```

```html
<button class="btn btn-default action-button" id="btn" type="button">Button</button>
```
Copy link
Collaborator Author

@chendaniely chendaniely Apr 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

still not too sure how to explain + show extensibility.

@github-actions github-actions bot temporarily deployed to pr-261 April 4, 2025 09:06 Destroyed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants