lp: updated banner + small fixes.

This commit is contained in:
Matija Sosic 2022-12-08 18:43:25 +01:00
parent d104c37a7a
commit 8bdeef6041
3 changed files with 11 additions and 5 deletions

View File

@ -40,6 +40,8 @@ Here are the the new features that ship with Beta:
Developers can now write all their code in TypeScript both on client and server. Were also in the process of migrating our codebase and adding new types to Wasp imports every day. Developers can now write all their code in TypeScript both on client and server. Were also in the process of migrating our codebase and adding new types to Wasp imports every day.
[Learn more here →](/blog/2022/11/29/typescript-feature-announcement)
### 🔑 Full-stack authentication ### 🔑 Full-stack authentication
Besides username & password, Wasp now also supports authentication with Google. We offer both UI helpers (forms you can just import) and functions you can call from client or server if you need more control. Besides username & password, Wasp now also supports authentication with Google. We offer both UI helpers (forms you can just import) and functions you can call from client or server if you need more control.
@ -58,15 +60,19 @@ Developers can run one-time or schedule repeating functions that run out of the
[Learn more here →](/blog/2022/06/15/jobs-feature-announcement) [Learn more here →](/blog/2022/06/15/jobs-feature-announcement)
### 🥛 **Optimistic updates support** ### 🥛 Optimistic updates support
Wasp will by default propagate your data model changes across the stack. Still, [in some cases](https://wasp-lang.dev/blog/2021/12/02/waspello#what-doesnt-work-yet) Wasp will by default propagate your data model changes across the stack. Still, [in some cases](https://wasp-lang.dev/blog/2021/12/02/waspello#what-doesnt-work-yet)
you might want more control over that flow for the sake of smoother UX - that is now easy to achieve with Wasp. you might want more control over that flow for the sake of smoother UX - that is now easy to achieve with Wasp.
### 📟 **Wasp Language Server** [Learn more here →](/blog/2022/11/30/optimistic-update-feature-announcement)
### 📟 Wasp Language Server
Wasp now has its own LSP for VS Code (other editors coming soon) - that means improved syntax highlighting, code snippets, autocompletion, and error reporting. Wasp now has its own LSP for VS Code (other editors coming soon) - that means improved syntax highlighting, code snippets, autocompletion, and error reporting.
[Learn more here →](/blog/2022/12/01/beta-ide-improvements)
## Whats next? ## Whats next?
The next features are going to be about making Wasp easier to use - more examples, starter templates and UI helpers. Longer term, well look into deeper integration of data models throughout the stack and supporting more functionalities through the DSL. The next features are going to be about making Wasp easier to use - more examples, starter templates and UI helpers. Longer term, well look into deeper integration of data models throughout the stack and supporting more functionalities through the DSL.

View File

@ -21,7 +21,7 @@ module.exports = {
themeConfig: { themeConfig: {
announcementBar: { announcementBar: {
id: 'Beta_is_here', id: 'Beta_is_here',
content: 'Beta Launch Week day 6: <a href="https://betathon.wasp-lang.dev/">Hackathon!</a> 🚀', content: 'Wasp Hackathon #1 is underway! 🚀 <a href="https://betathon.wasp-lang.dev/">Join now</a>',
backgroundColor: '#eab307', backgroundColor: '#eab307',
textColor: '#fff', textColor: '#fff',
isCloseable: false, isCloseable: false,

View File

@ -31,11 +31,11 @@ const Announcement = () => {
> >
<span className='item-center flex gap-2 px-3'> <span className='item-center flex gap-2 px-3'>
<span>Beta Launch Week Day 6: <span className='underline'>Hackathon!</span> 🚀</span> <span>Wasp Hackathon #1 is under way! 🚀</span>
</span> </span>
<span className='hidden items-center space-x-2 px-3 lg:flex'> <span className='hidden items-center space-x-2 px-3 lg:flex'>
<span>See more</span> <span>Join now</span>
<ChevronRight size={14} /> <ChevronRight size={14} />
</span> </span>