Skip to content

Commit 8947336

Browse files
committed
chore: updated copy
1 parent 3d9178e commit 8947336

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

apps/landing/src/components/Header.svelte

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
import { SITE_URLS } from "@bashbuddy/consts";
1111
1212
// 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";
1415
1516
let isMenuOpen = $state(false);
1617
let isBannerVisible = $state(false);
@@ -69,8 +70,7 @@
6970
7071
// Check if banner was previously closed
7172
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";
7474
if (!isClosed) {
7575
isBannerVisible = true;
7676
}
@@ -91,7 +91,7 @@
9191
isBannerVisible = false;
9292
// Save state to localStorage
9393
if (typeof localStorage !== "undefined") {
94-
localStorage.setItem(BANNER_7DAYS_TILL_PRICE_BUMP, "true");
94+
localStorage.setItem(BANNER_STORAGE_KEY, "true");
9595
}
9696
}
9797
</script>
@@ -106,8 +106,8 @@
106106
>
107107
<p>
108108
<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.
111111
</span>
112112

113113
<a

0 commit comments

Comments
 (0)