mirror of
https://github.com/wasp-lang/wasp.git
synced 2024-12-25 01:52:00 +03:00
Merge branch 'release' into vince-update-docs-workers-auth
This commit is contained in:
commit
e8a84aea24
@ -46,7 +46,7 @@ const Benefits = () => {
|
||||
a <Lang />.
|
||||
</h2>
|
||||
<p className='text-neutral-500'>
|
||||
Don't worry, it takes less than 30 minutes to learn.
|
||||
Don't worry, it takes less than 30 minutes to learn. Works seamlessly with your stack.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
@ -87,6 +87,8 @@ const Hero = () => {
|
||||
|
||||
route RootRoute { path: "/", to: MainPage }
|
||||
page MainPage {
|
||||
/* Only logged in users can access this. */
|
||||
authRequired: true,
|
||||
/* import your React code */
|
||||
component: import Main from "@ext/Main.js"
|
||||
}`
|
||||
|
@ -63,7 +63,7 @@ const HowItWorks = () => {
|
||||
|
||||
<Feature
|
||||
title='Typescript support'
|
||||
url='/'
|
||||
url='/blog/2022/11/29/typescript-feature-announcement'
|
||||
description="JS or TS - mix'n'match as you wish."
|
||||
/>
|
||||
|
||||
@ -75,7 +75,7 @@ const HowItWorks = () => {
|
||||
|
||||
<Feature
|
||||
title='LSP for VS Code'
|
||||
url=''
|
||||
url='/blog/2022/12/01/beta-ide-improvements'
|
||||
description='Syntax highligthing, go-to-definition, etc. work out-of-the-box.'
|
||||
/>
|
||||
|
||||
|
@ -164,7 +164,7 @@ const Testimonials = () => {
|
||||
}
|
||||
|
||||
return (
|
||||
<SectionContainer className='space-y-16' id='showcases'>
|
||||
<SectionContainer className='space-y-16' id='testimonials'>
|
||||
<div className='grid grid-cols-12'>
|
||||
<div className='col-span-12 text-center'>
|
||||
<h2 className='text-xl lg:text-2xl text-neutral-700 mb-4'>
|
||||
|
Loading…
Reference in New Issue
Block a user