Fix two small typos in the docs and website (#1262)

This commit is contained in:
David Santoso 2023-06-19 04:44:07 -04:00 committed by GitHub
parent fb4001a5a0
commit 4b8a97c044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -140,7 +140,7 @@ You customize all of the available forms by passing props to them.
Props you can pass to all of the forms:
- `appearance` - appearance of the form, see below (optional)
- `logo` - path to your logo (optional)
- `socialLayout` - layout of the social buttons, which can be `vertical`` or `horizontal` (optional)
- `socialLayout` - layout of the social buttons, which can be `vertical` or `horizontal` (optional)
### Theme colors override

View File

@ -28,7 +28,7 @@ const faqs = [
<br/><br/>
Ruby on Rails and Django both fall in the category of full-stack web frameworks - they allow you to write backend/server code and also generate html/css that gets sent to the client.
<br/><br/>
The main reason whey they are often today not used as a standalone solution, but rather as an API server combined with frontend libraries such as React & Vue, is to add support for the client side manipulation of DOM.
The main reason why they are often today not used as a standalone solution, but rather as an API server combined with frontend libraries such as React & Vue, is to add support for the client side manipulation of DOM.
Thats especially important for web applications with a lot of dynamic content (e.g. dashboards) where you want smooth experience of a desktop app.
Imagine expanding a post on Twitter or moving a Trello card and suddenly the whole site starts reloading - that's why you need React or Vue.
<br/><br/>