mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 07:56:56 +00:00
chore: copy changes and minor fixes, onboarding hint (#9095)
This commit is contained in:
parent
ac81eab7bb
commit
d075ceecba
@ -98,7 +98,7 @@ export function AboutSigNozQuestions({
|
|||||||
|
|
||||||
<TextArea
|
<TextArea
|
||||||
className="discover-signoz-input"
|
className="discover-signoz-input"
|
||||||
placeholder="e.g., Google Search, Hacker News, Reddit, a friend, ChatGPT, a blog post, a conference, etc."
|
placeholder={`e.g., googling "datadog alternative", a post on r/devops, from a friend/colleague, a LinkedIn post, ChatGPT, etc.`}
|
||||||
value={discoverSignoz}
|
value={discoverSignoz}
|
||||||
autoFocus
|
autoFocus
|
||||||
rows={4}
|
rows={4}
|
||||||
|
|||||||
@ -192,7 +192,7 @@ function OrgQuestions({
|
|||||||
return (
|
return (
|
||||||
<div className="questions-container">
|
<div className="questions-container">
|
||||||
<Typography.Title level={3} className="title">
|
<Typography.Title level={3} className="title">
|
||||||
Welcome, {user?.displayName}!
|
{user?.displayName ? `Welcome, ${user.displayName}!` : 'Welcome!'}
|
||||||
</Typography.Title>
|
</Typography.Title>
|
||||||
<Typography.Paragraph className="sub-title">
|
<Typography.Paragraph className="sub-title">
|
||||||
We'll help you get the most out of SigNoz, whether you're new to
|
We'll help you get the most out of SigNoz, whether you're new to
|
||||||
@ -296,15 +296,15 @@ function OrgQuestions({
|
|||||||
onChange={(e): void => setOtherTool(e.target.value)}
|
onChange={(e): void => setOtherTool(e.target.value)}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<button
|
<Button
|
||||||
type="button"
|
type="primary"
|
||||||
className={`onboarding-questionaire-button ${
|
className={`onboarding-questionaire-button ${
|
||||||
observabilityTool === 'Others' ? 'active' : ''
|
observabilityTool === 'Others' ? 'active' : ''
|
||||||
}`}
|
}`}
|
||||||
onClick={(): void => setObservabilityTool('Others')}
|
onClick={(): void => setObservabilityTool('Others')}
|
||||||
>
|
>
|
||||||
Others
|
Others
|
||||||
</button>
|
</Button>
|
||||||
)}
|
)}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user