File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
apps/landing/src/components Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 10
10
import { SITE_URLS } from " @bashbuddy/consts" ;
11
11
12
12
// const BANNER_STORAGE_KEY = "bashbuddy-qwen-banner-closed";
13
- const BANNER_7DAYS_TILL_PRICE_BUMP = " bashbuddy-banner-7days-till-price-bump" ;
13
+ const BANNER_STORAGE_KEY =
14
+ " bashbuddy-banner-better-cloud-models-and-upcoming-agent-mode" ;
14
15
15
16
let isMenuOpen = $state (false );
16
17
let isBannerVisible = $state (false );
69
70
70
71
// Check if banner was previously closed
71
72
if (typeof localStorage !== " undefined" ) {
72
- const isClosed =
73
- localStorage .getItem (BANNER_7DAYS_TILL_PRICE_BUMP ) === " true" ;
73
+ const isClosed = localStorage .getItem (BANNER_STORAGE_KEY ) === " true" ;
74
74
if (! isClosed ) {
75
75
isBannerVisible = true ;
76
76
}
91
91
isBannerVisible = false ;
92
92
// Save state to localStorage
93
93
if (typeof localStorage !== " undefined" ) {
94
- localStorage .setItem (BANNER_7DAYS_TILL_PRICE_BUMP , " true" );
94
+ localStorage .setItem (BANNER_STORAGE_KEY , " true" );
95
95
}
96
96
}
97
97
</script >
106
106
>
107
107
<p >
108
108
<span class =" font-medium" >
109
- LAST CHANCE TO GET BashBuddy Cloud AT $2/MONTH! We're introducing better
110
- AI models and a new agent mode.
109
+ We're introducing better AI models on BashBuddy Cloud and upcoming agent
110
+ mode.
111
111
</span >
112
112
113
113
<a
You can’t perform that action at this time.
0 commit comments