@@ -119,30 +119,36 @@ const UpgradeOnboardingMinor = () => {
119119 if ( pageName === "welcome" ) {
120120 pageComp = (
121121 < div className = "flex flex-col h-full" >
122- < header className = "flex flex-col gap-2 border-b-0 p-0 mt-1 mb-6 w-full unselectable flex-shrink-0" >
122+ < header className = "flex flex-col gap-2 border-b-0 p-0 mt-1 mb-4 w-full unselectable flex-shrink-0" >
123123 < div className = "flex justify-center" >
124124 < Logo />
125125 </ div >
126- < div className = "text-center text-[25px] font-normal text-foreground" > Welcome to Wave v0.12 !</ div >
126+ < div className = "text-center text-[25px] font-normal text-foreground" > Welcome to Wave v0.13 !</ div >
127127 </ header >
128128 < OverlayScrollbarsComponent
129129 className = "flex-1 overflow-y-auto min-h-0"
130130 options = { { scrollbars : { autoHide : "never" } } }
131131 >
132132 < div className = "flex flex-col items-center gap-3 w-full mb-2 unselectable" >
133- < div className = "flex flex-col items-center gap-4 max-w-md text-center" >
133+ < div className = "flex flex-col items-center gap-4 text-center" >
134134 < div className = "flex h-[52px] px-3 items-center rounded-lg bg-hover text-accent text-[24px]" >
135135 < i className = "fa fa-sparkles" />
136136 < span className = "font-bold ml-2 font-mono" > Wave AI</ span >
137137 </ div >
138- < div className = "text-secondary leading-relaxed max-w-[420px ]" >
138+ < div className = "text-secondary leading-relaxed max-w-[600px ]" >
139139 < p className = "mb-4" >
140- Wave AI is your new terminal assistant with full context. It can read your terminal
141- output, analyze widgets, access files, and help you solve problems faster.
140+ Wave AI is your terminal assistant with full context. It can read your terminal
141+ output, analyze widgets, read and write files, and help you solve
142+ problems faster.
142143 </ p >
143- < p className = "p-3 border border-border rounded-md bg-hover/30" >
144- Wave AI is in active beta with included AI credits while we refine the experience.
145- We're actively improving it and would love your feedback in{ " " }
144+ < p className = "mb-4" >
145+ < span className = "font-semibold text-foreground" > New in v0.13:</ span > Wave AI now
146+ supports local models and bring-your-own-key! Use Ollama, LM Studio, vLLM,
147+ OpenRouter, or any OpenAI-compatible provider.
148+ </ p >
149+ < p className = "py-3 px-2 border border-border rounded-md bg-hover/30" >
150+ Wave AI is in beta with included AI credits while we refine the experience. We're
151+ actively improving it and would love your feedback in{ " " }
146152 < a target = "_blank" href = "https://discord.gg/XfvZ334gwU" className = "hover:underline" >
147153 Discord
148154 </ a >
@@ -151,9 +157,9 @@ const UpgradeOnboardingMinor = () => {
151157 </ div >
152158 </ div >
153159
154- < div className = "w-full max-w-md border-t border-border my-2" > </ div >
160+ < div className = "w-full max-w-[550px] border-t border-border my-2" > </ div >
155161
156- < div className = "flex flex-col items-center gap-3 text-center max-w-[440px ]" >
162+ < div className = "flex flex-col items-center gap-3 text-center max-w-[550px ]" >
157163 < div className = "text-foreground text-base" > Thanks for being an early Wave adopter! ⭐</ div >
158164 < div className = "text-secondary text-sm" >
159165 A GitHub star shows your support for Wave (and open-source) and helps us reach more
@@ -186,7 +192,7 @@ const UpgradeOnboardingMinor = () => {
186192 }
187193
188194 const paddingClass = isCompact ? "!py-3 !px-[30px]" : "!p-[30px]" ;
189- const widthClass = pageName === "features" ? "w-[800px]" : "w-[560px ]" ;
195+ const widthClass = pageName === "features" ? "w-[800px]" : "w-[600px ]" ;
190196
191197 return (
192198 < FlexiModal className = { `${ widthClass } rounded-[10px] ${ paddingClass } relative overflow-hidden` } ref = { modalRef } >
@@ -198,4 +204,4 @@ const UpgradeOnboardingMinor = () => {
198204
199205UpgradeOnboardingMinor . displayName = "UpgradeOnboardingMinor" ;
200206
201- export { UpgradeOnboardingMinor } ;
207+ export { UpgradeOnboardingMinor } ;
0 commit comments