Skip to content

Commit 494006c

Browse files
committed
Align footer social media icons with marketing site
1 parent b8b4712 commit 494006c

File tree

1 file changed

+41
-7
lines changed

1 file changed

+41
-7
lines changed

src/theme/Footer/index.tsx

Lines changed: 41 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ import {
1616
faXTwitter,
1717
faYoutube,
1818
faLinkedinIn,
19+
faGithub,
20+
faSquareFacebook,
1921
} from '@fortawesome/free-brands-svg-icons';
2022
import { Stack } from '@mui/system';
2123
import {
@@ -135,6 +137,20 @@ export const Footer = () => {
135137
}}
136138
>
137139
{[
140+
{
141+
alt: 'Sumo Logic GitHub',
142+
color: '#e3e3e3',
143+
href: 'https://github.com/SumoLogic',
144+
'aria-label': 'Sumo Logic GitHub',
145+
icon: faGithub,
146+
size: 'lg',
147+
sx: {
148+
cursor: 'pointer',
149+
'&:hover': {
150+
color: '#0045BE',
151+
},
152+
}
153+
},
138154
{
139155
alt: 'Sumo Logic YouTube',
140156
color: '#e3e3e3',
@@ -150,10 +166,24 @@ export const Footer = () => {
150166
}
151167
},
152168
{
153-
alt: 'Sumo Logic X (formerly known as Twitter)',
169+
alt: 'Sumo Logic LinkedIn',
170+
color: '#e3e3e3',
171+
href: 'https://www.linkedin.com/company/sumo-logic',
172+
'aria-label': 'Sumo Logic LinkedIn',
173+
icon: faLinkedinIn,
174+
size: 'lg',
175+
sx: {
176+
cursor: 'pointer',
177+
'&:hover': {
178+
color: '#0045BE',
179+
},
180+
}
181+
},
182+
{
183+
alt: 'Sumo Logic X (formerly Twitter)',
154184
color: '#e3e3e3',
155185
href: 'https://x.com/SumoLogic',
156-
'aria-label': 'Sumo Logic X (formerly known as Twitter)',
186+
'aria-label': 'Sumo Logic X (formerly Twitter)',
157187
icon: faXTwitter,
158188
size: 'lg',
159189
sx: {
@@ -164,11 +194,11 @@ export const Footer = () => {
164194
}
165195
},
166196
{
167-
alt: 'Sumo Logic LinkedIn',
197+
alt: 'Sumo Logic Facebook',
168198
color: '#e3e3e3',
169-
href: 'https://www.linkedin.com/company/sumo-logic',
170-
'aria-label': 'Sumo Logic LinkedIn',
171-
icon: faLinkedinIn,
199+
href: 'https://www.facebook.com/Sumo.Logic',
200+
'aria-label': 'Sumo Logic Facebook',
201+
icon: faSquareFacebook,
172202
size: 'lg',
173203
sx: {
174204
cursor: 'pointer',
@@ -215,7 +245,11 @@ export const Footer = () => {
215245
{
216246
label: 'Terms of Use',
217247
href: 'https://www.sumologic.com/terms-conditions',
218-
}].map(({ href, label }) => (
248+
},
249+
{
250+
label: 'CA Privacy Notice',
251+
href: 'https://www.sumologic.com/legal/privacy-statement#ca_notice',
252+
},].map(({ href, label }) => (
219253
<Fragment key={href}>
220254
<Link
221255
color='#6c7993'

0 commit comments

Comments
 (0)