Skip to content

Commit 5a373d9

Browse files
authored
Update README (#630)
1 parent e132821 commit 5a373d9

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

README.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -139,17 +139,20 @@ Let's break this down.
139139

140140
### **UI In Pynecone**
141141

142-
Lets start by talking about the UI this Pynecone App.
142+
Let's start with the UI.
143143

144144
```python
145145
def index():
146146
return pc.center(
147147
...
148148
)
149149
```
150-
This index function defines the frontend of the app. We use different components such as `center`, `vstack`, `input`, and `button` to build the front end. Components can be nested to create complex layouts and styled using CSS's full power. Just pass them in as keyword args.
150+
This `index` function defines the frontend of the app.
151151

152-
Pynecone comes with [50+ built-in components](https://pynecone.io/docs/library) to help you get started. We are actively adding more components, plus it's easy to create your own components.
152+
We use different components such as `center`, `vstack`, `input`, and `button` to build the frontend. Components can be nested within each other
153+
to create complex layouts. And you can use keyword args to style them with the full power of CSS.
154+
155+
Pynecone comes with [60+ built-in components](https://pynecone.io/docs/library) to help you get started. We are actively adding more components, plus it's easy to (create your own components)[https://pynecone.io/docs/advanced-guide/wrapping-react].
153156

154157
### **State**
155158

@@ -198,10 +201,12 @@ You can create a multi-page app by adding more routes.
198201

199202
## Status
200203

201-
As of December 2022, Pynecone has just been released publicly and is in the **Alpha Stage**.
204+
Pynecone launched in December 2022.
205+
206+
As of March 2023, we are in the **Public Beta** stage.
202207

203-
- :large_orange_diamond: **Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them actively.
204-
- **Public Beta**: Stable enough for non-enterprise use-cases.
208+
- :white_check_mark: **Public Alpha**: Anyone can install and use Pynecone. There may be issues, but we are working to resolve them actively.
209+
- :large_orange_diamond: **Public Beta**: Stable enough for non-enterprise use-cases.
205210
- **Public Hosting Beta**: **Optionally** Deploy and Host your own apps on Pynecone!
206211
- **Public**: Pynecone is production ready.
207212

pynecone/.templates/app/tutorial.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
# type: ignore
21
"""Welcome to Pynecone! This file outlines the steps to create a basic app."""
32
from pcconfig import config
43

0 commit comments

Comments
 (0)