mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Apply two-column layout to overview page header (#133453)
This commit is contained in:
parent
4f8080f788
commit
db39df94ea
1 changed files with 26 additions and 23 deletions
|
@ -156,30 +156,33 @@ export const ProductSelector: React.FC<ProductSelectorProps> = ({
|
|||
<SetPageChrome />
|
||||
<SendTelemetry action="viewed" metric="overview" />
|
||||
<TrialCallout />
|
||||
<EuiText textAlign="center">
|
||||
<KibanaPageTemplateSolutionNavAvatar
|
||||
name="Enterprise Search"
|
||||
iconType="logoEnterpriseSearch"
|
||||
size="xxl"
|
||||
/>
|
||||
|
||||
<EuiSpacer />
|
||||
|
||||
<h1>
|
||||
{i18n.translate('xpack.enterpriseSearch.overview.heading', {
|
||||
defaultMessage: 'Welcome to Elastic Enterprise Search',
|
||||
})}
|
||||
</h1>
|
||||
<p>
|
||||
{config.host
|
||||
? i18n.translate('xpack.enterpriseSearch.overview.subheading', {
|
||||
defaultMessage: 'Add search to your app or organization.',
|
||||
})
|
||||
: i18n.translate('xpack.enterpriseSearch.overview.setupHeading', {
|
||||
defaultMessage: 'Choose a product to set up and get started.',
|
||||
<EuiFlexGroup responsive={false} alignItems="center">
|
||||
<EuiFlexItem grow={false}>
|
||||
<KibanaPageTemplateSolutionNavAvatar
|
||||
name="Enterprise Search"
|
||||
iconType="logoEnterpriseSearch"
|
||||
size="xxl"
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiText>
|
||||
<h1>
|
||||
{i18n.translate('xpack.enterpriseSearch.overview.heading', {
|
||||
defaultMessage: 'Welcome to Elastic Enterprise Search',
|
||||
})}
|
||||
</p>
|
||||
</EuiText>
|
||||
</h1>
|
||||
<p>
|
||||
{config.host
|
||||
? i18n.translate('xpack.enterpriseSearch.overview.subheading', {
|
||||
defaultMessage: 'Add search to your app or organization.',
|
||||
})
|
||||
: i18n.translate('xpack.enterpriseSearch.overview.setupHeading', {
|
||||
defaultMessage: 'Choose a product to set up and get started.',
|
||||
})}
|
||||
</p>
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer size="xxl" />
|
||||
{shouldShowEnterpriseSearchCards ? productCards : insufficientAccessMessage}
|
||||
<Chat />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue