@ably/ui 8.5.0 → 8.7.0-dev.05d9441
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -12
- package/core/Code/component.css +5 -3
- package/core/Code/component.js +1 -1
- package/core/Code.jsx +373 -7273
- package/core/CompanyAutocomplete/component.js +1 -1
- package/core/ConnectStateWrapper/component.js +1 -1
- package/core/ConnectStateWrapper.jsx +16 -7
- package/core/ContactFooter/component.js +1 -1
- package/core/ContactFooter.jsx +20 -126
- package/core/CookieMessage/component.js +1 -1
- package/core/CookieMessage.jsx +24 -296
- package/core/CustomerLogos/component.js +1 -1
- package/core/CustomerLogos.jsx +18 -120
- package/core/DropdownMenu/component.js +1 -0
- package/core/DropdownMenu.jsx +313 -0
- package/core/FeatureFooter/component.js +1 -1
- package/core/FeaturedLink/component.css +1 -1
- package/core/FeaturedLink/component.js +1 -1
- package/core/FeaturedLink.jsx +15 -121
- package/core/Flash/component.js +1 -1
- package/core/Flash.jsx +157 -1538
- package/core/Footer/component.css +23 -3
- package/core/Footer/component.js +1 -1
- package/core/Footer.jsx +175 -195
- package/core/Icon/component.js +1 -1
- package/core/Icon.jsx +12 -117
- package/core/Loader/component.js +1 -1
- package/core/Loader.jsx +12 -117
- package/core/Logo/component.js +1 -1
- package/core/Logo.jsx +38 -228
- package/core/Meganav/component.css +7 -9
- package/core/Meganav/component.js +1 -2
- package/core/Meganav/component.json +2 -2
- package/core/Meganav.jsx +2233 -9531
- package/core/MeganavBlogPostsList/component.js +1 -1
- package/core/MeganavBlogPostsList.jsx +18 -125
- package/core/MeganavContentCompany/component.js +1 -1
- package/core/MeganavContentCompany.jsx +60 -141
- package/core/MeganavContentDevelopers/component.js +1 -1
- package/core/MeganavContentDevelopers.jsx +66 -135
- package/core/{MeganavContentPlatform → MeganavContentProducts}/component.js +1 -1
- package/core/{MeganavContentPlatform.jsx → MeganavContentProducts.jsx} +40 -171
- package/core/MeganavContentUseCases/component.js +1 -1
- package/core/MeganavContentUseCases.jsx +80 -154
- package/core/MeganavControl/component.js +1 -1
- package/core/MeganavControl.jsx +15 -121
- package/core/MeganavControlMobileDropdown/component.js +1 -1
- package/core/MeganavControlMobileDropdown.jsx +16 -122
- package/core/MeganavControlMobilePanelClose/component.js +1 -1
- package/core/MeganavControlMobilePanelClose.jsx +15 -121
- package/core/MeganavControlMobilePanelOpen/component.js +1 -1
- package/core/MeganavControlMobilePanelOpen.jsx +15 -121
- package/core/MeganavItemsDesktop/component.js +1 -1
- package/core/MeganavItemsDesktop.jsx +22 -130
- package/core/MeganavItemsMobile/component.js +1 -1
- package/core/MeganavItemsMobile.jsx +44 -158
- package/core/MeganavItemsSignedIn/component.js +1 -1
- package/core/MeganavItemsSignedIn.jsx +38 -151
- package/core/MeganavSearch/component.js +1 -1
- package/core/MeganavSearch.jsx +28 -138
- package/core/MeganavSearchAutocomplete/component.js +1 -2
- package/core/MeganavSearchAutocomplete.jsx +4 -4
- package/core/MeganavSearchPanel/component.js +1 -1
- package/core/MeganavSearchPanel.jsx +24 -133
- package/core/MeganavSearchSuggestions/component.js +1 -1
- package/core/MeganavSearchSuggestions.jsx +18 -125
- package/core/Notice/component.js +1 -2
- package/core/Notice.jsx +195 -2196
- package/core/Showcase/component.js +1 -1
- package/core/Showcase.jsx +1 -1
- package/core/SignOutLink/component.js +1 -1
- package/core/SignOutLink.jsx +12 -117
- package/core/Slider/component.js +1 -1
- package/core/Slider.jsx +31 -588
- package/core/Uptime/component.js +1 -1
- package/core/Uptime.jsx +24 -127
- package/core/fonts/jetBrains-mono.css +3 -0
- package/core/fonts/manrope.css +3 -0
- package/core/images/ably-logo.png +0 -0
- package/core/images/best-support-2023.svg +1 -0
- package/core/images/fastest-implementation-2023.svg +1 -0
- package/core/images/high-performer-2022.png +0 -0
- package/core/images/high-performer-2023.svg +1 -0
- package/core/images/highest-user-adoption-2022.png +0 -0
- package/core/images/highest-user-adoption-2023.svg +1 -0
- package/core/images/users-love-us-2022.png +0 -0
- package/core/scripts.js +1 -1
- package/core/sprites.svg +175 -1
- package/core/styles.css +228 -106
- package/package.json +6 -6
- package/reset/scripts.js +1 -1
- package/reset/styles.css +1 -11
- package/src/core/Code/component.css +1 -67
- package/src/core/Code/component.js +11 -46
- package/src/core/Code/component.jsx +7 -3
- package/src/core/CustomerLogos/component.html.erb +2 -2
- package/src/core/CustomerLogos/component.jsx +3 -2
- package/src/core/CustomerLogos/component.rb +2 -1
- package/src/core/DropdownMenu/component.jsx +112 -0
- package/src/core/FeatureFooter/component.html.erb +4 -4
- package/src/core/FeaturedLink/component.css +1 -1
- package/src/core/Flash/component.jsx +42 -18
- package/src/core/Footer/component.css +23 -3
- package/src/core/Footer/component.html.erb +122 -65
- package/src/core/Footer/component.jsx +130 -63
- package/src/core/Logo/component.html.erb +2 -27
- package/src/core/Logo/component.jsx +7 -40
- package/src/core/Logo/component.rb +15 -6
- package/src/core/Meganav/component.css +7 -7
- package/src/core/Meganav/component.html.erb +1 -1
- package/src/core/Meganav/component.json +2 -2
- package/src/core/Meganav/component.jsx +3 -3
- package/src/core/Meganav/component.rb +7 -6
- package/src/core/MeganavContentCompany/component.html.erb +9 -0
- package/src/core/MeganavContentCompany/component.jsx +9 -0
- package/src/core/MeganavContentDevelopers/component.html.erb +36 -11
- package/src/core/MeganavContentDevelopers/component.jsx +38 -10
- package/src/core/{MeganavContentPlatform → MeganavContentProducts}/component.html.erb +16 -34
- package/src/core/MeganavContentProducts/component.js +0 -0
- package/src/core/{MeganavContentPlatform → MeganavContentProducts}/component.jsx +19 -40
- package/src/core/{MeganavContentPlatform → MeganavContentProducts}/component.rb +1 -1
- package/src/core/MeganavContentUseCases/component.html.erb +51 -29
- package/src/core/MeganavContentUseCases/component.jsx +50 -29
- package/src/core/MeganavItemsDesktop/component.jsx +1 -1
- package/src/core/MeganavItemsDesktop/component.rb +1 -1
- package/src/core/MeganavSearchSuggestions/component.html.erb +1 -1
- package/src/core/Notice/component.html.erb +2 -2
- package/src/core/Notice/component.jsx +2 -2
- package/src/core/core.rb +16 -4
- package/src/core/fonts/jetBrains-mono.css +3 -0
- package/src/core/fonts/manrope.css +3 -0
- package/src/core/icons/github.svg +1 -1
- package/src/core/icons/google.svg +3 -0
- package/src/core/icons/icon-display-asset-tracking-col.svg +18 -0
- package/src/core/icons/icon-display-chat-col.svg +4 -0
- package/src/core/icons/icon-display-data-broadcast-col.svg +26 -0
- package/src/core/icons/icon-display-data-synchronization-col.svg +14 -0
- package/src/core/icons/icon-display-events-col.svg +13 -0
- package/src/core/icons/icon-display-examples-col.svg +11 -0
- package/src/core/icons/icon-display-integrations-col.svg +8 -0
- package/src/core/icons/icon-display-kafka-at-the-edge-col.svg +8 -0
- package/src/core/icons/icon-display-push-notifications-col.svg +6 -0
- package/src/core/icons/icon-gui-check-circled-fill-black.svg +4 -0
- package/src/core/icons/icon-gui-filter-flow-step-1.svg +5 -0
- package/src/core/icons/icon-gui-filter-flow-step-2.svg +5 -0
- package/src/core/icons/icon-gui-filter-flow-step-3.svg +5 -0
- package/src/core/icons/icon-gui-link.svg +4 -0
- package/src/core/icons/icon-gui-resources.svg +3 -0
- package/src/core/icons/icon-live-updates-results-metrics-col.svg +26 -0
- package/src/core/icons/icon-multi-user-spaces-col.svg +13 -0
- package/src/core/icons/icon-social-x.svg +3 -0
- package/src/core/icons/icon-tech-apachekafka.svg +3 -0
- package/src/core/icons/stackoverflow.svg +3 -0
- package/src/core/icons/youtube.svg +11 -0
- package/src/core/images/ably-logo.png +0 -0
- package/src/core/images/best-support-2023.svg +1 -0
- package/src/core/images/fastest-implementation-2023.svg +1 -0
- package/src/core/images/high-performer-2022.png +0 -0
- package/src/core/images/high-performer-2023.svg +1 -0
- package/src/core/images/highest-user-adoption-2022.png +0 -0
- package/src/core/images/highest-user-adoption-2023.svg +1 -0
- package/src/core/images/users-love-us-2022.png +0 -0
- package/src/core/styles/buttons.css +5 -5
- package/src/core/styles/forms.css +5 -5
- package/src/core/styles/properties.css +155 -45
- package/src/core/styles/text.css +63 -45
- package/src/core/utils/syntax-highlighter-registry.js +63 -0
- package/src/core/utils/syntax-highlighter.css +71 -0
- package/src/core/utils/syntax-highlighter.js +103 -0
- package/tailwind.config.js +144 -49
- package/core/Meganav/component.js.LICENSE.txt +0 -7
- package/core/MeganavSearchAutocomplete/component.js.LICENSE.txt +0 -7
- package/core/Notice/component.js.LICENSE.txt +0 -9
- /package/src/core/{MeganavContentPlatform → DropdownMenu}/component.js +0 -0
|
@@ -1,46 +1,10 @@
|
|
|
1
|
-
import React
|
|
1
|
+
import React from "react";
|
|
2
2
|
import T from "prop-types";
|
|
3
|
-
import { nanoid } from "nanoid/non-secure";
|
|
4
|
-
|
|
5
|
-
const Logo = ({ dataId, href = "/" }) => {
|
|
6
|
-
// This fixes a bug where if the logo is rendered more than once on the page, and one of the instances
|
|
7
|
-
// if it is hidden, the other instance will not show the ably shape from the logo.
|
|
8
|
-
|
|
9
|
-
// This is because the defs in this SVG reference ids that need to be unique ids. The browser discards the "newer"
|
|
10
|
-
// linearGradients defined in the other logo, and inherits the `hidden` style from the first.
|
|
11
|
-
const gradientIds = useMemo(() => [nanoid(), nanoid()], []);
|
|
12
3
|
|
|
4
|
+
const Logo = ({ dataId, logoUrl, href = "/", additionalImgAttrs, additionalLinkAttrs }) => {
|
|
13
5
|
return (
|
|
14
|
-
<a href={href} className="
|
|
15
|
-
<
|
|
16
|
-
<path
|
|
17
|
-
d="M62.922 24.9786V4.08813H66.6933V11.6512C67.9709 10.435 69.6164 9.76044 71.3538 9.76044C75.4318 9.76044 79.0498 12.8674 79.0498 17.5484C79.0498 22.2293 75.4318 25.3465 71.3538 25.3465C69.5244 25.3465 67.7971 24.6209 66.5094 23.3024V24.9786H62.922ZM75.2785 17.5484C75.2785 14.932 73.4183 13.1025 70.9859 13.1025C68.6148 13.1025 66.7853 14.84 66.6933 17.3644V17.5484C66.6933 20.1648 68.5534 21.9942 70.9859 21.9942C73.4183 21.9942 75.2785 20.1648 75.2785 17.5484ZM80.7975 24.9786V4.08813H84.5688V24.9786H80.7975ZM89.8425 30.3954L92.0399 25.1523L86.0712 10.1284H90.1491L93.9511 20.6247L97.8144 10.1284H101.954L93.8591 30.4056H89.8425V30.3954ZM56.9329 10.1284V12.0191C55.6247 10.5883 53.7952 9.77066 51.9147 9.77066C47.8367 9.77066 44.2187 12.8777 44.2187 17.5586C44.2187 22.2497 47.8367 25.3465 51.9147 25.3465C53.8668 25.3465 55.7166 24.4982 57.0555 22.9754V24.9888H60.3465V10.1284H56.9329ZM56.5649 17.5484C56.5649 20.1341 54.7048 21.9942 52.2724 21.9942C49.8399 21.9942 47.9798 20.1341 47.9798 17.5484C47.9798 14.9626 49.8399 13.1025 52.2724 13.1025C54.6435 13.1025 56.473 14.8706 56.5649 17.3644V17.5484Z"
|
|
18
|
-
fill="currentColor"
|
|
19
|
-
/>
|
|
20
|
-
<path
|
|
21
|
-
d="M19.2858 0L3.14788 29.5369L0 27.3293L14.932 0H19.2858ZM19.5107 0L35.6487 29.5369L38.7965 27.3293L23.8646 0H19.5107Z"
|
|
22
|
-
fill={`url(#${gradientIds[0]})`}
|
|
23
|
-
/>
|
|
24
|
-
<path d="M35.4238 29.7107L19.3983 17.16L3.37271 29.7107L6.64323 32L19.3983 22.0147L32.1533 32L35.4238 29.7107Z" fill={`url(#${gradientIds[1]})`} />
|
|
25
|
-
<defs>
|
|
26
|
-
<linearGradient id={gradientIds[0]} x1="5.47361" y1="37.4219" x2="32.4603" y2="7.45023" gradientUnits="userSpaceOnUse">
|
|
27
|
-
<stop stopColor="#FF5416" />
|
|
28
|
-
<stop offset="0.2535" stopColor="#FF5115" />
|
|
29
|
-
<stop offset="0.461" stopColor="#FF4712" />
|
|
30
|
-
<stop offset="0.6523" stopColor="#FF350E" />
|
|
31
|
-
<stop offset="0.8327" stopColor="#FF1E08" />
|
|
32
|
-
<stop offset="1" stopColor="#FF0000" />
|
|
33
|
-
</linearGradient>
|
|
34
|
-
<linearGradient id={gradientIds[1]} x1="10.7084" y1="39.3593" x2="26.6583" y2="21.6452" gradientUnits="userSpaceOnUse">
|
|
35
|
-
<stop stopColor="#FF5416" />
|
|
36
|
-
<stop offset="0.2535" stopColor="#FF5115" />
|
|
37
|
-
<stop offset="0.461" stopColor="#FF4712" />
|
|
38
|
-
<stop offset="0.6523" stopColor="#FF350E" />
|
|
39
|
-
<stop offset="0.8327" stopColor="#FF1E08" />
|
|
40
|
-
<stop offset="1" stopColor="#FF0000" />
|
|
41
|
-
</linearGradient>
|
|
42
|
-
</defs>
|
|
43
|
-
</svg>
|
|
6
|
+
<a href={href} data-id={dataId} className="block" style={{ height: "2.125rem" }} {...additionalLinkAttrs}>
|
|
7
|
+
<img src={logoUrl} width="108px" alt="Ably logo" {...additionalImgAttrs} />
|
|
44
8
|
</a>
|
|
45
9
|
);
|
|
46
10
|
};
|
|
@@ -48,6 +12,9 @@ const Logo = ({ dataId, href = "/" }) => {
|
|
|
48
12
|
Logo.propTypes = {
|
|
49
13
|
dataId: T.string,
|
|
50
14
|
href: T.string,
|
|
15
|
+
logoUrl: T.string,
|
|
16
|
+
additionalImgAttrs: T.object,
|
|
17
|
+
additionalLinkAttrs: T.object,
|
|
51
18
|
};
|
|
52
19
|
|
|
53
20
|
export default React.memo(Logo);
|
|
@@ -1,17 +1,26 @@
|
|
|
1
|
-
require 'securerandom'
|
|
2
|
-
|
|
3
1
|
module AblyUi
|
|
4
2
|
module Core
|
|
5
3
|
class Logo < ViewComponent::Base
|
|
6
4
|
include AblyUi::Core::MeganavConfig
|
|
7
5
|
|
|
8
|
-
attr_reader :href,
|
|
6
|
+
attr_reader :href,
|
|
7
|
+
:logo_url,
|
|
8
|
+
:data_id,
|
|
9
|
+
:additional_img_attrs,
|
|
10
|
+
:additional_link_attrs
|
|
9
11
|
|
|
10
|
-
def initialize(
|
|
12
|
+
def initialize(
|
|
13
|
+
href:,
|
|
14
|
+
logo_url:,
|
|
15
|
+
data_id: '',
|
|
16
|
+
additional_img_attrs: {},
|
|
17
|
+
additional_link_attrs: {}
|
|
18
|
+
)
|
|
11
19
|
@data_id = data_id
|
|
12
20
|
@href = href
|
|
13
|
-
@
|
|
14
|
-
@
|
|
21
|
+
@logo_url = logo_url
|
|
22
|
+
@additional_img_attrs = additional_img_attrs
|
|
23
|
+
@additional_link_attrs = additional_link_attrs
|
|
15
24
|
end
|
|
16
25
|
|
|
17
26
|
def logo_href
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
}
|
|
52
52
|
|
|
53
53
|
.ui-meganav-link {
|
|
54
|
-
@apply text-menu2 font-
|
|
54
|
+
@apply text-menu2 font-bold block font-sans;
|
|
55
55
|
@apply mr-12 lg:mr-24 px-0 py-20;
|
|
56
56
|
@apply hover:text-gui-hover focus:text-gui-focus focus:outline-none;
|
|
57
57
|
@apply transition-colors;
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
|
|
64
64
|
.ui-meganav-mobile-link {
|
|
65
65
|
@apply p-menu-row relative -left-8 w-extend-8;
|
|
66
|
-
@apply text-menu2 font-medium block text-cool-black text-left;
|
|
66
|
+
@apply text-menu2 font-bold font-mono font-medium block text-cool-black text-left;
|
|
67
67
|
@apply flex items-center;
|
|
68
68
|
@apply focus:text-gui-focus focus:outline-none;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.ui-meganav-account-link {
|
|
72
|
-
@apply block px-8 py-8 hover:bg-light-grey hover:text-gui-hover rounded relative -left-8 text-menu3 w-extend-8 font-
|
|
72
|
+
@apply block px-8 py-8 hover:bg-light-grey hover:text-gui-hover rounded relative -left-8 text-menu3 w-extend-8 font-bold font-mono;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
.ui-meganav-content {
|
|
@@ -93,19 +93,19 @@
|
|
|
93
93
|
grid-template-rows: min-content 1fr;
|
|
94
94
|
|
|
95
95
|
@apply block px-8 py-8 hover:bg-light-grey rounded relative -left-8 w-extend-8;
|
|
96
|
-
@apply grid gap-x-
|
|
96
|
+
@apply grid gap-x-16;
|
|
97
97
|
}
|
|
98
98
|
|
|
99
99
|
.ui-meganav-media-heading {
|
|
100
|
-
@apply text-menu3 text-cool-black font-
|
|
100
|
+
@apply text-menu3 text-cool-black font-bold font-sans group-hover:text-gui-hover group-focus:text-gui-focus leading-normal;
|
|
101
101
|
}
|
|
102
102
|
|
|
103
103
|
.ui-meganav-media-copy {
|
|
104
|
-
@apply text-p3 text-dark-grey
|
|
104
|
+
@apply text-p3 font-sans font-medium text-dark-grey leading-normal;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
107
|
.ui-meganav-overline {
|
|
108
|
-
@apply text-overline2 text-cool-black uppercase font-
|
|
108
|
+
@apply text-overline2 text-cool-black uppercase font-bold font-mono tracking-widen-0.16 p-overline;
|
|
109
109
|
}
|
|
110
110
|
|
|
111
111
|
.ui-meganav-hr {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
<div class="ui-meganav ui-grid-px">
|
|
5
5
|
<div className="mr-24">
|
|
6
|
-
<%= render(AblyUi::Core::Logo.new(data_id: "meganav-logo", href: logo_link)) %>
|
|
6
|
+
<%= render(AblyUi::Core::Logo.new(data_id: "meganav-logo", href: logo_link, logo_url: ably_logo)) %>
|
|
7
7
|
</div>
|
|
8
8
|
<%= render(AblyUi::Core::MeganavItemsDesktop.new(theme_name: @theme_name, url_base: url_base)) %>
|
|
9
9
|
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
}
|
|
30
30
|
},
|
|
31
31
|
"panels": [
|
|
32
|
-
{ "label": "
|
|
33
|
-
{ "label": "
|
|
32
|
+
{ "label": "Products", "shortLabel": "Products", "id": "products-panel", "component": "MeganavContentProducts" },
|
|
33
|
+
{ "label": "Solutions", "shortLabel": "Solutions", "id": "use-cases-panel", "component": "MeganavContentUseCases" },
|
|
34
34
|
{ "label": "Company", "shortLabel": "Company", "id": "company-panel", "component": "MeganavContentCompany" },
|
|
35
35
|
{ "label": "Developers", "shortLabel": "Developers", "id": "developers-panel", "component": "MeganavContentDevelopers" }
|
|
36
36
|
]
|
|
@@ -14,7 +14,7 @@ import Notice from "../Notice/component.jsx";
|
|
|
14
14
|
import MeganavData from "./component.json";
|
|
15
15
|
import _absUrl from "../url-base";
|
|
16
16
|
|
|
17
|
-
import
|
|
17
|
+
import MeganavContentProducts from "../MeganavContentProducts/component.jsx";
|
|
18
18
|
import MeganavContentUseCases from "../MeganavContentUseCases/component.jsx";
|
|
19
19
|
import MeganavContentCompany from "../MeganavContentCompany/component.jsx";
|
|
20
20
|
import MeganavContentDevelopers from "../MeganavContentDevelopers/component.jsx";
|
|
@@ -58,7 +58,7 @@ SignIn.propTypes = {
|
|
|
58
58
|
const SignInPlaceholder = () => <div />;
|
|
59
59
|
|
|
60
60
|
const panels = {
|
|
61
|
-
|
|
61
|
+
MeganavContentProducts: MeganavContentProducts,
|
|
62
62
|
MeganavContentUseCases: MeganavContentUseCases,
|
|
63
63
|
MeganavContentCompany: MeganavContentCompany,
|
|
64
64
|
MeganavContentDevelopers: MeganavContentDevelopers,
|
|
@@ -86,7 +86,7 @@ export default function Meganav({ paths, themeName = "white", notice, loginLink
|
|
|
86
86
|
{notice && <Notice {...notice.props} config={notice.config} />}
|
|
87
87
|
<div className="ui-meganav ui-grid-px">
|
|
88
88
|
<div className="mr-24">
|
|
89
|
-
<Logo dataId="meganav-logo" href={urlBase} />
|
|
89
|
+
<Logo dataId="meganav-logo" href={urlBase} logoUrl={paths.logo} />
|
|
90
90
|
</div>
|
|
91
91
|
|
|
92
92
|
<MeganavItemsDesktop panels={panels} paths={paths} theme={theme} absUrl={absUrl} />
|
|
@@ -6,6 +6,7 @@ module AblyUi
|
|
|
6
6
|
class Meganav < ViewComponent::Base
|
|
7
7
|
include MeganavConfig
|
|
8
8
|
include Util
|
|
9
|
+
include SharedAssets
|
|
9
10
|
attr_reader :options, :login_link, :logo_link, :url_base
|
|
10
11
|
|
|
11
12
|
renders_one :notice, AblyUi::Core::Notice
|
|
@@ -29,14 +30,14 @@ module AblyUi
|
|
|
29
30
|
def panels
|
|
30
31
|
[
|
|
31
32
|
{
|
|
32
|
-
label: '
|
|
33
|
-
short_label: '
|
|
34
|
-
id: '
|
|
35
|
-
class: 'AblyUi::Core::
|
|
33
|
+
label: 'Products',
|
|
34
|
+
short_label: 'Products',
|
|
35
|
+
id: 'products-panel',
|
|
36
|
+
class: 'AblyUi::Core::MeganavContentProducts'
|
|
36
37
|
},
|
|
37
38
|
{
|
|
38
|
-
label: '
|
|
39
|
-
short_label: '
|
|
39
|
+
label: 'Solutions',
|
|
40
|
+
short_label: 'Solutions',
|
|
40
41
|
id: 'use-cases-panel',
|
|
41
42
|
class: 'AblyUi::Core::MeganavContentUseCases'
|
|
42
43
|
},
|
|
@@ -72,6 +72,15 @@
|
|
|
72
72
|
</div>
|
|
73
73
|
<% end %>
|
|
74
74
|
</li>
|
|
75
|
+
<li>
|
|
76
|
+
<%= link_to abs_url("/events"), class: "ui-meganav-media-with-image group" do %>
|
|
77
|
+
<%= render(AblyUi::Core::Icon.new(name: "icon-display-events-col", size: "2.5rem")) %>
|
|
78
|
+
<div class="flex flex-col justify-center">
|
|
79
|
+
<p class="ui-meganav-media-heading">Events</p>
|
|
80
|
+
<p class="ui-meganav-media-copy">Join Ably at upcoming events.</p>
|
|
81
|
+
</div>
|
|
82
|
+
<% end %>
|
|
83
|
+
</li>
|
|
75
84
|
</ul>
|
|
76
85
|
</div>
|
|
77
86
|
|
|
@@ -88,6 +88,15 @@ const MeganavContentCompany = ({ paths, absUrl }) => {
|
|
|
88
88
|
</div>
|
|
89
89
|
</a>
|
|
90
90
|
</li>
|
|
91
|
+
<li>
|
|
92
|
+
<a href={absUrl("/events")} className="ui-meganav-media-with-image group">
|
|
93
|
+
<Icon name="icon-display-events-col" size="2.5rem" />
|
|
94
|
+
<div className="flex flex-col justify-center">
|
|
95
|
+
<p className="ui-meganav-media-heading">Events</p>
|
|
96
|
+
<p className="ui-meganav-media-copy">Join Ably at upcoming events.</p>
|
|
97
|
+
</div>
|
|
98
|
+
</a>
|
|
99
|
+
</li>
|
|
91
100
|
</ul>
|
|
92
101
|
</div>
|
|
93
102
|
|
|
@@ -16,26 +16,34 @@
|
|
|
16
16
|
<% end %>
|
|
17
17
|
</li>
|
|
18
18
|
<li>
|
|
19
|
-
<%= link_to abs_url("/docs/
|
|
20
|
-
<%= render(AblyUi::Core::Icon.new(name: "icon-display-
|
|
19
|
+
<%= link_to abs_url("/docs/quick-start-guide"), class: "ui-meganav-media-with-image group" do %>
|
|
20
|
+
<%= render(AblyUi::Core::Icon.new(name: "icon-display-quickstart-guides-col", size: "2.5rem")) %>
|
|
21
21
|
<div class="flex flex-col justify-center">
|
|
22
|
-
<p class="ui-meganav-media-heading">
|
|
23
|
-
<p class="ui-meganav-media-copy">
|
|
22
|
+
<p class="ui-meganav-media-heading">Quickstart guides</p>
|
|
23
|
+
<p class="ui-meganav-media-copy">Documentation to help you get started quickly.</p>
|
|
24
24
|
</div>
|
|
25
25
|
<% end %>
|
|
26
26
|
</li>
|
|
27
27
|
<li>
|
|
28
|
-
<%= link_to abs_url("/
|
|
29
|
-
<%= render(AblyUi::Core::Icon.new(name: "icon-display-
|
|
28
|
+
<%= link_to abs_url("/integrations"), class: "ui-meganav-media-with-image group" do %>
|
|
29
|
+
<%= render(AblyUi::Core::Icon.new(name: "icon-display-integrations-col", size: "2.5rem")) %>
|
|
30
30
|
<div class="flex flex-col justify-center">
|
|
31
|
-
<p class="ui-meganav-media-heading">
|
|
32
|
-
<p class="ui-meganav-media-copy">
|
|
31
|
+
<p class="ui-meganav-media-heading">Integrations</p>
|
|
32
|
+
<p class="ui-meganav-media-copy">Find out more about Ably integrations. </p>
|
|
33
|
+
</div>
|
|
34
|
+
<% end %>
|
|
35
|
+
</li>
|
|
36
|
+
<li>
|
|
37
|
+
<%= link_to abs_url("/examples"), class: "ui-meganav-media-with-image group" do %>
|
|
38
|
+
<%= render(AblyUi::Core::Icon.new(name: "icon-display-examples-col", size: "2.5rem")) %>
|
|
39
|
+
<div class="flex flex-col justify-center">
|
|
40
|
+
<p class="ui-meganav-media-heading">Live examples</p>
|
|
41
|
+
<p class="ui-meganav-media-copy">Discover our features and their use cases.</p>
|
|
33
42
|
</div>
|
|
34
43
|
<% end %>
|
|
35
44
|
</li>
|
|
36
45
|
</ul>
|
|
37
46
|
</div>
|
|
38
|
-
|
|
39
47
|
<div class="col-span-full md:col-span-4 pb-8 md:py-24 lg:py-32 px-24 sm:px-32 md:px-0">
|
|
40
48
|
<ul class="md:mt-40" aria-labelledby="meganav-developers-panel-explore">
|
|
41
49
|
<li>
|
|
@@ -56,9 +64,26 @@
|
|
|
56
64
|
</div>
|
|
57
65
|
<% end %>
|
|
58
66
|
</li>
|
|
67
|
+
<li>
|
|
68
|
+
<%= link_to abs_url("/reference-guide-chat"), class: "ui-meganav-media-with-image group" do %>
|
|
69
|
+
<%= render(AblyUi::Core::Icon.new(name: "icon-display-chat-col", size: "2.5rem")) %>
|
|
70
|
+
<div class="flex flex-col justify-center">
|
|
71
|
+
<p class="ui-meganav-media-heading">Chat apps reference guide</p>
|
|
72
|
+
<p class="ui-meganav-media-copy">Learn how to build chat apps with Ably.</p>
|
|
73
|
+
</div>
|
|
74
|
+
<% end %>
|
|
75
|
+
</li>
|
|
76
|
+
<li>
|
|
77
|
+
<%= link_to abs_url("/reference-guide-multiplayer"), class: "ui-meganav-media-with-image group" do %>
|
|
78
|
+
<%= render(AblyUi::Core::Icon.new(name: "icon-multi-user-spaces-col", size: "2.5rem")) %>
|
|
79
|
+
<div class="flex flex-col justify-center">
|
|
80
|
+
<p class="ui-meganav-media-heading">Multiplayer reference guide</p>
|
|
81
|
+
<p class="ui-meganav-media-copy">Learn how to build collaborative features with Ably.</p>
|
|
82
|
+
</div>
|
|
83
|
+
<% end %>
|
|
84
|
+
</li>
|
|
59
85
|
</ul>
|
|
60
86
|
</div>
|
|
61
|
-
|
|
62
87
|
<div class="col-span-full md:col-span-4 pt-8 pb-24 md:py-24 lg:py-32 px-24 sm:px-32 md:px-0">
|
|
63
88
|
<h3 class="ui-meganav-overline uppercase" id="meganav-developers-panel-quick-links">
|
|
64
89
|
Quick links
|
|
@@ -71,7 +96,7 @@
|
|
|
71
96
|
</li>
|
|
72
97
|
<li>
|
|
73
98
|
<%= link_to "https://github.com/ably", class: "group ui-meganav-media py-12" do %>
|
|
74
|
-
<p class="ui-meganav-media-heading">
|
|
99
|
+
<p class="ui-meganav-media-heading">GitHub</p>
|
|
75
100
|
<% end %>
|
|
76
101
|
</li>
|
|
77
102
|
<li>
|
|
@@ -22,20 +22,29 @@ const MeganavContentDevelopers = ({ absUrl }) => (
|
|
|
22
22
|
</a>
|
|
23
23
|
</li>
|
|
24
24
|
<li>
|
|
25
|
-
<a href={absUrl("/docs/
|
|
26
|
-
<Icon name="icon-display-
|
|
25
|
+
<a href={absUrl("/docs/quick-start-guide")} className="ui-meganav-media-with-image group">
|
|
26
|
+
<Icon name="icon-display-quickstart-guides-col" size="2.5rem" />
|
|
27
27
|
<div className="flex flex-col justify-center">
|
|
28
|
-
<p className="ui-meganav-media-heading">
|
|
29
|
-
<p className="ui-meganav-media-copy">
|
|
28
|
+
<p className="ui-meganav-media-heading">Quickstart guides</p>
|
|
29
|
+
<p className="ui-meganav-media-copy">Documentation to help you get started quickly.</p>
|
|
30
30
|
</div>
|
|
31
31
|
</a>
|
|
32
32
|
</li>
|
|
33
33
|
<li>
|
|
34
|
-
<a href={absUrl("/
|
|
35
|
-
<Icon name="icon-display-
|
|
34
|
+
<a href={absUrl("/integrations")} className="ui-meganav-media-with-image group">
|
|
35
|
+
<Icon name="icon-display-integrations-col" size="2.5rem" />
|
|
36
36
|
<div className="flex flex-col justify-center">
|
|
37
|
-
<p className="ui-meganav-media-heading">
|
|
38
|
-
<p className="ui-meganav-media-copy">
|
|
37
|
+
<p className="ui-meganav-media-heading">Integrations</p>
|
|
38
|
+
<p className="ui-meganav-media-copy">Find out more about Ably integrations. </p>
|
|
39
|
+
</div>
|
|
40
|
+
</a>
|
|
41
|
+
</li>
|
|
42
|
+
<li>
|
|
43
|
+
<a href={absUrl("/examples")} className="ui-meganav-media-with-image group">
|
|
44
|
+
<Icon name="icon-display-examples-col" size="2.5rem" />
|
|
45
|
+
<div className="flex flex-col justify-center">
|
|
46
|
+
<p className="ui-meganav-media-heading">Live examples</p>
|
|
47
|
+
<p className="ui-meganav-media-copy">Discover our features and their use cases.</p>
|
|
39
48
|
</div>
|
|
40
49
|
</a>
|
|
41
50
|
</li>
|
|
@@ -58,7 +67,25 @@ const MeganavContentDevelopers = ({ absUrl }) => (
|
|
|
58
67
|
<Icon name="icon-display-tutorials-demos-col" size="2.5rem" />
|
|
59
68
|
<div className="flex flex-col justify-center">
|
|
60
69
|
<p className="ui-meganav-media-heading">Tutorials & Demos</p>
|
|
61
|
-
<p className="ui-meganav-media-copy">Get stuck in with our hands-on resources
|
|
70
|
+
<p className="ui-meganav-media-copy">Get stuck in with our hands-on resources.</p>
|
|
71
|
+
</div>
|
|
72
|
+
</a>
|
|
73
|
+
</li>
|
|
74
|
+
<li>
|
|
75
|
+
<a href={absUrl("/reference-guide-chat")} className="ui-meganav-media-with-image group">
|
|
76
|
+
<Icon name="icon-display-chat-col" size="2.5rem" />
|
|
77
|
+
<div className="flex flex-col justify-center">
|
|
78
|
+
<p className="ui-meganav-media-heading">Chat apps reference guide</p>
|
|
79
|
+
<p className="ui-meganav-media-copy">Learn how to build chat apps with Ably.</p>
|
|
80
|
+
</div>
|
|
81
|
+
</a>
|
|
82
|
+
</li>
|
|
83
|
+
<li>
|
|
84
|
+
<a href={absUrl("/reference-guide-multiplayer")} className="ui-meganav-media-with-image group">
|
|
85
|
+
<Icon name="icon-multi-user-spaces-col" size="2.5rem" />
|
|
86
|
+
<div className="flex flex-col justify-center">
|
|
87
|
+
<p className="ui-meganav-media-heading">Multiplayer reference guide</p>
|
|
88
|
+
<p className="ui-meganav-media-copy">Learn how to build collaborative features with Ably.</p>
|
|
62
89
|
</div>
|
|
63
90
|
</a>
|
|
64
91
|
</li>
|
|
@@ -77,7 +104,7 @@ const MeganavContentDevelopers = ({ absUrl }) => (
|
|
|
77
104
|
</li>
|
|
78
105
|
<li>
|
|
79
106
|
<a href="https://github.com/ably" className="group ui-meganav-media py-12">
|
|
80
|
-
<p className="ui-meganav-media-heading">
|
|
107
|
+
<p className="ui-meganav-media-heading">GitHub</p>
|
|
81
108
|
</a>
|
|
82
109
|
</li>
|
|
83
110
|
<li>
|
|
@@ -90,6 +117,7 @@ const MeganavContentDevelopers = ({ absUrl }) => (
|
|
|
90
117
|
<p className="ui-meganav-media-heading">
|
|
91
118
|
Status
|
|
92
119
|
<iframe
|
|
120
|
+
title="Ably status"
|
|
93
121
|
src="https://status.ably.com/embed/icon"
|
|
94
122
|
allowtransparency="true"
|
|
95
123
|
frameBorder="0"
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<h3 class="ui-meganav-overline ml-24">The Ably Platform</h3>
|
|
8
8
|
</div>
|
|
9
9
|
|
|
10
|
-
<p class="text-p2 font-
|
|
10
|
+
<p class="text-p2 font-bold text-cool-black mb-24 leading-normal" style="max-width: 330px">
|
|
11
11
|
Easily power any realtime experience in your application. No complex infrastructure to manage or provision. Just a simple API that handles everything
|
|
12
12
|
realtime, and lets you focus on your code.
|
|
13
13
|
</p>
|
|
@@ -16,52 +16,34 @@
|
|
|
16
16
|
</div>
|
|
17
17
|
|
|
18
18
|
<div class="col-span-full md:col-span-4 pt-24 pb-8 md:py-24 lg:py-32 px-24 sm:px-32 md:px-0 bg-white">
|
|
19
|
-
<h3 class="ui-meganav-overline" id="meganav-
|
|
20
|
-
|
|
19
|
+
<h3 class="ui-meganav-overline" id="meganav-products-panel-list-examples">
|
|
20
|
+
Products
|
|
21
|
+
</h3>
|
|
22
|
+
<ul class="mb-16" aria-labelledby="meganav-products-panel-list-examples">
|
|
21
23
|
<li>
|
|
22
|
-
<%= link_to abs_url("/
|
|
23
|
-
<p class="ui-meganav-media-heading">
|
|
24
|
-
<p class="ui-meganav-media-copy">
|
|
24
|
+
<%= link_to abs_url("/solutions/channels"), class: "ui-meganav-media group" do %>
|
|
25
|
+
<p class="ui-meganav-media-heading">Pub/Sub Channels</p>
|
|
26
|
+
<p class="ui-meganav-media-copy">Build infinitely scalable realtime applications.</p>
|
|
25
27
|
<% end %>
|
|
26
28
|
</li>
|
|
27
29
|
<li>
|
|
28
|
-
<%= link_to abs_url("/
|
|
29
|
-
<p class="ui-meganav-media-heading">
|
|
30
|
-
<p class="ui-meganav-media-copy">
|
|
30
|
+
<%= link_to abs_url("/spaces"), class: "ui-meganav-media group" do %>
|
|
31
|
+
<p class="ui-meganav-media-heading">Spaces (Beta)</p>
|
|
32
|
+
<p class="ui-meganav-media-copy">Create multi-user collaborative environments.</p>
|
|
31
33
|
<% end %>
|
|
32
34
|
</li>
|
|
33
35
|
<li>
|
|
34
|
-
<%= link_to abs_url("/
|
|
35
|
-
<p class="ui-meganav-media-heading">
|
|
36
|
-
<p class="ui-meganav-media-copy">
|
|
37
|
-
<% end %>
|
|
38
|
-
</li>
|
|
39
|
-
<li>
|
|
40
|
-
<%= link_to abs_url("/examples/live-charts"), class: "ui-meganav-media group" do %>
|
|
41
|
-
<p class="ui-meganav-media-heading">Live Charts</p>
|
|
42
|
-
<p class="ui-meganav-media-copy">Visualise live metrics and data in a chart.</p>
|
|
43
|
-
<% end %>
|
|
44
|
-
</li>
|
|
45
|
-
<li>
|
|
46
|
-
<%= link_to abs_url("/examples/live-cursors"), class: "ui-meganav-media group" do %>
|
|
47
|
-
<p class="ui-meganav-media-heading">Live Cursors</p>
|
|
48
|
-
<p class="ui-meganav-media-copy">Track all cursors in realtime.</p>
|
|
49
|
-
<% end %>
|
|
50
|
-
</li>
|
|
51
|
-
<li>
|
|
52
|
-
<%= link_to abs_url("/examples/typing-indicator"), class: "ui-meganav-media group" do %>
|
|
53
|
-
<p class="ui-meganav-media-heading">Typing Indicator</p>
|
|
54
|
-
<p class="ui-meganav-media-copy">See when a user is typing a message.</p>
|
|
36
|
+
<%= link_to abs_url("/livesync"), class: "ui-meganav-media group" do %>
|
|
37
|
+
<p class="ui-meganav-media-heading">LiveSync (Pre release)</p>
|
|
38
|
+
<p class="ui-meganav-media-copy">Keep clients in sync with any relational database.</p>
|
|
55
39
|
<% end %>
|
|
56
40
|
</li>
|
|
57
41
|
</ul>
|
|
58
|
-
|
|
59
|
-
<%= render(AblyUi::Core::FeaturedLink.new(url: abs_url("/examples"), text_size: 'text-p3')) do %>Explore all live examples<% end %>
|
|
60
42
|
</div>
|
|
61
43
|
|
|
62
44
|
<div class="col-span-full md:col-span-4 pt-8 pb-24 md:py-24 lg:py-32 px-24 sm:px-32 md:px-0 bg-white">
|
|
63
|
-
<h3 class="ui-meganav-overline" id="meganav-
|
|
64
|
-
<ul class="mb-16" aria-labelledby="meganav-
|
|
45
|
+
<h3 class="ui-meganav-overline" id="meganav-products-panel-list-our-technology">Technology</h3>
|
|
46
|
+
<ul class="mb-16" aria-labelledby="meganav-products-panel-list-our-technology">
|
|
65
47
|
<li>
|
|
66
48
|
<%= link_to abs_url("/four-pillars-of-dependability#performance"), class: "ui-meganav-media group" do %>
|
|
67
49
|
<p class="ui-meganav-media-heading">Predictable performance</p>
|
|
File without changes
|
|
@@ -3,7 +3,7 @@ import T from "prop-types";
|
|
|
3
3
|
|
|
4
4
|
import FeaturedLink from "../FeaturedLink/component.jsx";
|
|
5
5
|
|
|
6
|
-
const
|
|
6
|
+
const MeganavContentProducts = ({ paths, absUrl }) => (
|
|
7
7
|
<div className="flex max-w-screen-xl mx-auto">
|
|
8
8
|
<div className="ui-meganav-content-spacer bg-extra-light-grey"></div>
|
|
9
9
|
<section className="grid grid-cols-12 ui-grid-gap-x w-full">
|
|
@@ -12,7 +12,7 @@ const MeganavContentPlatform = ({ paths, absUrl }) => (
|
|
|
12
12
|
<img src={paths.ablyStack} alt="Ably homepage" />
|
|
13
13
|
<h3 className="ui-meganav-overline ml-24">The Ably Platform</h3>
|
|
14
14
|
</div>
|
|
15
|
-
<p className="text-p2 font-
|
|
15
|
+
<p className="text-p2 font-bold text-cool-black mb-24 leading-normal" style={{ maxWidth: "330px" }}>
|
|
16
16
|
Easily power any realtime experience in your application. No complex infrastructure to manage or provision. Just a simple API that handles everything
|
|
17
17
|
realtime, and lets you focus on your code.
|
|
18
18
|
</p>
|
|
@@ -23,57 +23,36 @@ const MeganavContentPlatform = ({ paths, absUrl }) => (
|
|
|
23
23
|
</div>
|
|
24
24
|
|
|
25
25
|
<div className="col-span-full md:col-span-4 pt-24 pb-8 md:py-24 lg:py-32 px-24 sm:px-32 md:px-0 bg-white">
|
|
26
|
-
<h3 className="ui-meganav-overline" id="meganav-
|
|
27
|
-
|
|
26
|
+
<h3 className="ui-meganav-overline" id="meganav-products-panel-list-examples">
|
|
27
|
+
Products
|
|
28
28
|
</h3>
|
|
29
|
-
<ul className="mb-16" aria-labelledby="meganav-
|
|
29
|
+
<ul className="mb-16" aria-labelledby="meganav-products-panel-list-examples">
|
|
30
30
|
<li>
|
|
31
|
-
<a href={absUrl("/
|
|
32
|
-
<p className="ui-meganav-media-heading">
|
|
33
|
-
<p className="ui-meganav-media-copy">
|
|
31
|
+
<a href={absUrl("/solutions/channels")} className="group ui-meganav-media">
|
|
32
|
+
<p className="ui-meganav-media-heading">Pub/Sub Channels</p>
|
|
33
|
+
<p className="ui-meganav-media-copy">Build infinitely scalable realtime applications.</p>
|
|
34
34
|
</a>
|
|
35
35
|
</li>
|
|
36
36
|
<li>
|
|
37
|
-
<a href={absUrl("/
|
|
38
|
-
<p className="ui-meganav-media-heading">
|
|
39
|
-
<p className="ui-meganav-media-copy">
|
|
37
|
+
<a href={absUrl("/spaces")} className="group ui-meganav-media">
|
|
38
|
+
<p className="ui-meganav-media-heading">Spaces (Beta)</p>
|
|
39
|
+
<p className="ui-meganav-media-copy">Create multi-user collaborative environments.</p>
|
|
40
40
|
</a>
|
|
41
41
|
</li>
|
|
42
42
|
<li>
|
|
43
|
-
<a href={absUrl("/
|
|
44
|
-
<p className="ui-meganav-media-heading">
|
|
45
|
-
<p className="ui-meganav-media-copy">
|
|
46
|
-
</a>
|
|
47
|
-
</li>
|
|
48
|
-
<li>
|
|
49
|
-
<a href={absUrl("/examples/live-charts")} className="ui-meganav-media group">
|
|
50
|
-
<p className="ui-meganav-media-heading">Live Charts</p>
|
|
51
|
-
<p className="ui-meganav-media-copy">Visualise live metrics and data in a chart.</p>
|
|
52
|
-
</a>
|
|
53
|
-
</li>
|
|
54
|
-
<li>
|
|
55
|
-
<a href={absUrl("/examples/live-cursors")} className="ui-meganav-media group">
|
|
56
|
-
<p className="ui-meganav-media-heading">Live Cursors</p>
|
|
57
|
-
<p className="ui-meganav-media-copy">Track all cursors in realtime.</p>
|
|
58
|
-
</a>
|
|
59
|
-
</li>
|
|
60
|
-
<li>
|
|
61
|
-
<a href={absUrl("/examples/typing-indicator")} className="ui-meganav-media group">
|
|
62
|
-
<p className="ui-meganav-media-heading">Typing Indicator</p>
|
|
63
|
-
<p className="ui-meganav-media-copy">See when a user is typing a message.</p>
|
|
43
|
+
<a href={absUrl("/livesync")} className="group ui-meganav-media">
|
|
44
|
+
<p className="ui-meganav-media-heading">LiveSync (Pre release)</p>
|
|
45
|
+
<p className="ui-meganav-media-copy">Keep clients in sync with any relational database.</p>
|
|
64
46
|
</a>
|
|
65
47
|
</li>
|
|
66
48
|
</ul>
|
|
67
|
-
<FeaturedLink url={absUrl("/examples")} textSize="text-p3">
|
|
68
|
-
Explore all live examples
|
|
69
|
-
</FeaturedLink>
|
|
70
49
|
</div>
|
|
71
50
|
|
|
72
51
|
<div className="col-span-full md:col-span-4 pt-8 pb-24 md:py-24 lg:py-32 px-24 sm:px-32 md:px-0 bg-white">
|
|
73
|
-
<h3 className="ui-meganav-overline" id="meganav-
|
|
74
|
-
|
|
52
|
+
<h3 className="ui-meganav-overline" id="meganav-products-panel-list-our-technology">
|
|
53
|
+
Technology
|
|
75
54
|
</h3>
|
|
76
|
-
<ul className="mb-16" aria-labelledby="meganav-
|
|
55
|
+
<ul className="mb-16" aria-labelledby="meganav-products-panel-list-our-technology">
|
|
77
56
|
<li>
|
|
78
57
|
<a href={absUrl("/four-pillars-of-dependability#performance")} className="ui-meganav-media group">
|
|
79
58
|
<p className="ui-meganav-media-heading">Predictable performance</p>
|
|
@@ -115,7 +94,7 @@ const MeganavContentPlatform = ({ paths, absUrl }) => (
|
|
|
115
94
|
</div>
|
|
116
95
|
);
|
|
117
96
|
|
|
118
|
-
|
|
97
|
+
MeganavContentProducts.propTypes = {
|
|
119
98
|
paths: T.shape({
|
|
120
99
|
ablyStack: T.string,
|
|
121
100
|
iconSprites: T.string,
|
|
@@ -123,4 +102,4 @@ MeganavContentPlatform.propTypes = {
|
|
|
123
102
|
absUrl: T.func,
|
|
124
103
|
};
|
|
125
104
|
|
|
126
|
-
export default
|
|
105
|
+
export default MeganavContentProducts;
|