Skip to content

Commit 67769b7

Browse files
authored
Merge pull request #404 from wri/beta-to-preview
GNW beta --> GNW preview
2 parents 1f0f3c4 + 43d1954 commit 67769b7

File tree

10 files changed

+46
-45
lines changed

10 files changed

+46
-45
lines changed

app/(home)/sections/11_CTA.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default function CTASection() {
3737
</Box>
3838
<Button asChild variant="solid" colorPalette="primary" rounded="lg">
3939
<Link href="/app">
40-
{LANDING_PAGE_VERSION === "public" ? "Explore the beta" : "Try the preview"}
40+
{LANDING_PAGE_VERSION === "public" ? "Explore the preview" : "Try the preview"}
4141
<CaretRightIcon weight="bold" />
4242
</Link>
4343
</Button>

app/(home)/sections/1_Hero.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export default function LandingHero({
166166
>
167167
Global Nature Watch is an open, AI-powered system that transforms groundbreaking
168168
land monitoring data into intelligence to understand Earth&rsquo;s landscapes.
169-
Test the beta and help shape the future of land monitoring.
169+
Test the preview and help shape the future of land monitoring.
170170
</Text>
171171
</Container>
172172
<Container
@@ -282,14 +282,14 @@ export default function LandingHero({
282282
>
283283
<Text>
284284
<Badge size="xs" fontSize="8px" rounded="4px" mr="1">
285-
BETA
285+
PREVIEW
286286
</Badge>
287287
Global Nature Watch is
288288
{LANDING_PAGE_VERSION === "closed"
289-
? " in closed beta."
289+
? " in closed preview."
290290
: LANDING_PAGE_VERSION === "limited"
291-
? " in limited beta."
292-
: " in beta."}
291+
? " in limited preview."
292+
: " in preview."}
293293
</Text>
294294
<Tooltip
295295
openDelay={100}
@@ -306,7 +306,7 @@ export default function LandingHero({
306306
alignItems="center"
307307
>
308308
<QuestionIcon />
309-
What does beta mean?
309+
What does preview mean?
310310
</Box>
311311
</Tooltip>
312312
</Box>

app/(home)/sections/4_FeaturesTabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export default function FeaturesTabsSection() {
6868
rounded="lg"
6969
>
7070
<Link href="/app">
71-
Explore the beta
71+
Explore the preview
7272
<CaretRightIcon weight="bold" />
7373
</Link>
7474
</Button>

app/(home)/sections/5_SupportWorkTabs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ export default function SupportWorkTabsSection() {
153153
rounded="lg"
154154
>
155155
<Link href="/app">
156-
Explore the beta
156+
Explore the preview
157157
<CaretRightIcon weight="bold" />
158158
</Link>
159159
</Button>

app/components/ChatMessages.tsx

Lines changed: 32 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -53,49 +53,50 @@ function ChatMessages() {
5353
const isFirst = index === 0;
5454
return (
5555
<Fragment key={message.id}>
56-
{isFirst && displayDisclaimer && (
56+
{isFirst && displayDisclaimer && (
5757
<ChatDisclaimer
5858
type="info"
5959
setDisplayDisclaimer={setDisplayDisclaimer}
6060
>
6161
<Box>
6262
<Text mb={{ base: 1, md: 2 }}>
63-
<strong>Global Nature Watch beta</strong>
63+
<strong>Global Nature Watch preview</strong>
6464
</Text>
6565
<Text mb={{ base: 1, md: 2 }}>
66-
You&apos;re using a beta version that&apos;s still under active development.
66+
You&apos;re using a preview version that&apos;s still under active development.
6767
You may encounter errors or incomplete results, so verify results with primary sources.
6868
Features, datasets, and assistant behavior may change or be removed as we iterate.
6969
</Text>
7070
<Text>
71-
By using this beta, you&apos;re helping shape the future of Global Nature Watch.
72-
Share feedback via{" "}
73-
<Link
74-
color="primary.solid"
75-
textDecor="underline"
76-
href="https://surveys.hotjar.com/860def81-d4f2-4f8c-abee-339ebc3129f3"
77-
>
78-
this survey
79-
</Link>{" "}
80-
or by emailing{" "}
81-
<Link
82-
color="primary.solid"
83-
textDecor="underline"
84-
href="mailto:landcarbonlab@wri.org"
85-
>
86-
landcarbonlab@wri.org
87-
</Link>{". "}
88-
Visit the{" "}
89-
<Link
90-
color="primary.solid"
91-
textDecor="underline"
92-
href="https://help.globalnaturewatch.org/"
93-
target="_blank"
94-
rel="noopener noreferrer"
95-
>
96-
Help Center
97-
</Link>{" "}
98-
to learn more about the beta.
71+
By using this preview, you&apos;re helping shape the future of Global Nature Watch.
72+
Share feedback via{" "}
73+
<Link
74+
color="primary.solid"
75+
textDecor="underline"
76+
href="https://surveys.hotjar.com/860def81-d4f2-4f8c-abee-339ebc3129f3"
77+
>
78+
this survey
79+
</Link>{" "}
80+
or by emailing{" "}
81+
<Link
82+
color="primary.solid"
83+
textDecor="underline"
84+
href="mailto:landcarbonlab@wri.org"
85+
>
86+
landcarbonlab@wri.org
87+
</Link>
88+
{" "}
89+
Visit the{" "}
90+
<Link
91+
color="primary.solid"
92+
textDecor="underline"
93+
href="https://help.globalnaturewatch.org/"
94+
target="_blank"
95+
rel="noopener noreferrer"
96+
>
97+
Help Center
98+
</Link>{" "}
99+
to learn more about the preview.
99100
</Text>
100101
</Box>
101102
</ChatDisclaimer>

app/components/GlobalHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ const renderNavItems = (
8585
</Link>
8686
) : (
8787
<Link href="/app" onClick={() => setNavOpen && setNavOpen(false)}>
88-
Explore the beta
88+
Explore the preview
8989
</Link>
9090
)}
9191
</Button>

app/components/PageHeader.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ function PageHeader() {
7777
variant="solid"
7878
size="xs"
7979
>
80-
BETA
80+
PREVIEW
8181
</Badge>
8282
</Flex>
8383
<Flex gap="6" alignItems="center" hideBelow="md">

app/onboarding/form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ export default function OnboardingForm() {
311311
variant="solid"
312312
size="xs"
313313
>
314-
BETA
314+
PREVIEW
315315
</Badge>
316316
</Flex>
317317
<Button

app/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ export function Sidebar() {
231231
variant="solid"
232232
size="xs"
233233
>
234-
BETA
234+
PREVIEW
235235
</Badge>
236236
</Flex>
237237
</Flex>

app/unauthorized/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export default function UnauthorizedPage() {
110110
Thank you for your interest in Global Nature Watch!
111111
</Text>
112112
<Text fontSize={{ base: "xl", md: "2xl"}} {...commonStyles}>
113-
Right now access is limited while we are in closed beta. We&apos;d
113+
Right now access is limited while we are in closed preview. We&apos;d
114114
love for you to be part of what&apos;s next, so join the waitlist
115115
to be among the first to know when the tool becomes available.
116116
</Text>

0 commit comments

Comments
 (0)