Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions redisinsight/ui/src/pages/home/components/db-status/texts.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,35 +3,40 @@ import React from 'react'

export const CHECK_CLOUD_DATABASE = (
<>
<EuiTitle size="xxs"><span>Check your Cloud database</span></EuiTitle>
<EuiTitle size="xxs"><span>Build your app with Redis Cloud</span></EuiTitle>
<EuiSpacer size="s" />
<div>
Free Cloud databases are usually deleted after 15 days of inactivity.
Free Cloud DBs auto-delete after 15 days of inactivity.
<EuiSpacer size="s" />
Check your Cloud database to proceed with learning more about Redis and its capabilities.
But not to worry, you can always re-create it to test your ideas.
<br />
Includes native support for JSON, Query Engine and more.
</div>
</>
)

export const WARNING_WITH_CAPABILITY = (capability: string) => (
<>
<EuiTitle size="xxs"><span>{capability}</span></EuiTitle>
<EuiTitle size="xxs"><span>Build your app with {capability}</span></EuiTitle>
<EuiSpacer size="s" />
<div>
Hey, remember you expressed interest in {capability}?
Hey, remember your interest in {capability}?
<br />
Try your Cloud database to get started.
Use your free Redis Cloud DB to try it.
</div>
<EuiSpacer size="s" />
<div><b>Notice</b>: free Cloud databases will be deleted after 15 days of inactivity.</div>
<div><b>Note</b>: Free Cloud DBs auto-delete after 15 days of inactivity.</div>
</>
)
export const WARNING_WITHOUT_CAPABILITY = (
<>
<EuiTitle size="xxs"><span>Try your Cloud database</span></EuiTitle>
<EuiTitle size="xxs"><span>Your free Redis Cloud DB is waiting.</span></EuiTitle>
<EuiSpacer size="s" />
<div>Hey, try your Cloud database to learn more about Redis.</div>
<div>Test ideas and build prototypes.
<br />
Includes native support for JSON, Query Engine and more.
</div>
<EuiSpacer size="s" />
<div><b>Notice</b>: free Cloud databases will be deleted after 15 days of inactivity.</div>
<div><b>Note</b>: Free Cloud DBs auto-delete after 15 days of inactivity.</div>
</>
)
Loading