chore: copy changes and minor fixes, onboarding hint (#9095)

This commit is contained in:
manika-signoz 2025-09-15 18:54:37 +05:30 committed by GitHub
parent ac81eab7bb
commit d075ceecba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View File

@ -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}

View File

@ -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&apos;ll help you get the most out of SigNoz, whether you&apos;re new to We&apos;ll help you get the most out of SigNoz, whether you&apos;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>