@@ -7,8 +7,6 @@ import Reasoning from "./Reasoning";
77import SamplePrompts from "./SamplePrompts" ;
88import ChatDisclaimer from "./ChatDisclaimer" ;
99
10- const LANDING_PAGE_VERSION = process . env . NEXT_PUBLIC_LANDING_PAGE_VERSION ;
11-
1210function ChatMessages ( ) {
1311 const containerRef = useRef < HTMLDivElement > ( null ) ;
1412 const { messages, isLoading } = useChatStore ( ) ;
@@ -55,49 +53,50 @@ function ChatMessages() {
5553 const isFirst = index === 0 ;
5654 return (
5755 < Fragment key = { message . id } >
58- { isFirst && displayDisclaimer && (
56+ { isFirst && displayDisclaimer && (
5957 < ChatDisclaimer
6058 type = "info"
6159 setDisplayDisclaimer = { setDisplayDisclaimer }
6260 >
6361 < Box >
6462 < Text mb = { { base : 1 , md : 2 } } >
65- < strong > Global Nature Watch beta </ strong >
63+ < strong > Global Nature Watch preview </ strong >
6664 </ Text >
6765 < Text mb = { { base : 1 , md : 2 } } >
68- You're using a beta version that's still under active development.
66+ You're using a preview version that's still under active development.
6967 You may encounter errors or incomplete results, so verify results with primary sources.
7068 Features, datasets, and assistant behavior may change or be removed as we iterate.
7169 </ Text >
7270 < Text >
73- By using this beta, you're helping shape the future of Global Nature Watch.
74- Share feedback via{ " " }
75- < Link
76- color = "primary.solid"
77- textDecor = "underline"
78- href = "https://surveys.hotjar.com/860def81-d4f2-4f8c-abee-339ebc3129f3"
79- >
80- this survey
81- </ Link > { " " }
82- or by emailing{ " " }
83- < Link
84- color = "primary.solid"
85- textDecor = "underline"
86- href = "mailto:landcarbonlab@wri.org"
87- >
88- landcarbonlab@wri.org
89- </ Link > { ". " }
90- Visit the{ " " }
91- < Link
92- color = "primary.solid"
93- textDecor = "underline"
94- href = "https://help.globalnaturewatch.org/"
95- target = "_blank"
96- rel = "noopener noreferrer"
97- >
98- Help Center
99- </ Link > { " " }
100- to learn more about the beta.
71+ By using this preview, you'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.
101100 </ Text >
102101 </ Box >
103102 </ ChatDisclaimer >
@@ -110,7 +109,7 @@ function ChatMessages() {
110109 { isLoading && index === lastUserMessageIndex && < Reasoning /> }
111110
112111 { /* Prompt options for first message, removed when sent */ }
113- { messages . length < 2 && LANDING_PAGE_VERSION !== "public" && (
112+ { messages . length < 2 && (
114113 < SamplePrompts />
115114 ) }
116115 </ Fragment >
0 commit comments