Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/get-started/training-certification-faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: Find answers to frequently asked questions about Sumo Logic trainin
import useBaseUrl from '@docusaurus/useBaseUrl';
import Iframe from 'react-iframe';

<a href="https://www.sumologic.com/learn/training"><img src={useBaseUrl('img/get-started/sumo-academy-light-mode.png')} alt="Sumo Logic Academy logo" className="academy-logo" width="150" /></a><br/><br/>
<img src={useBaseUrl('img/get-started/sumo-academy.png')} alt="sumo logic academy" width="200"/><br/><br/>

Sumo Logic Academy is your hub for training and professional development. All courses (self‑paced eLearning, public hands‑on virtual classes, and workshops) are free, with paid private instruction offerings available.

Expand Down
10 changes: 0 additions & 10 deletions src/css/sumo.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1532,13 +1532,3 @@ article header h2[class*='title_'] {
-ms-transform: rotate(45deg);
transform: rotate(45deg);
}

/* Default: light mode */
html[data-theme='light'] .academy-logo {
content: url('/img/get-started/sumo-academy-light-mode.png');
}

/* Dark mode */
html[data-theme='dark'] .academy-logo {
content: url('/img/get-started/sumo-academy-dark-mode.png');
}
74 changes: 40 additions & 34 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,22 @@ export const Home = () => {
<Typography
bgcolor='#0045BE'
color='#e3e3e3'
fontFamily='Lab Grotesque'
fontSize={28}
fontWeight={700}
pt={3}
px={2}
pb={1}
sx={{
backgroundImage: 'linear-gradient(to right, rgb(0,0,153), rgb(0,70,190) 30%)',
fontFamily:
'var(--ifm-font-family-headings, var(--ifm-font-family-base, "Lab Grotesque", "Segoe UI", Roboto, Helvetica, Arial, sans-serif))',
}}
textAlign='center'
>
<Box
component={SumoLogicDocsLogo}
role='img'
aria-label='Sumo Logic Docs logo'
alt="Sumo Logic Docs logo"
role="<img>"
aria-hidden="true"
height={{
md: 36,
xs: 28,
Expand All @@ -78,8 +78,6 @@ export const Home = () => {
md: '100% 200%',
xs: '100% 100%',
},
fontFamily:
'var(--ifm-font-family-base, "Lab Grotesque", "Segoe UI", Roboto, Helvetica, Arial, sans-serif)',
}}
height={{
md: 'auto',
Expand Down Expand Up @@ -113,23 +111,19 @@ export const Home = () => {
>
<Typography
color='white'
fontFamily='Lab Grotesque'
fontSize={32}
fontWeight={700}
variant='h2'
sx={{
fontFamily:
'var(--ifm-font-family-headings, var(--ifm-font-family-base, "Lab Grotesque", "Segoe UI", Roboto, Helvetica, Arial, sans-serif))',
}}
>
New to Sumo?
</Typography>
<Typography
color='#e3e3e3'
fontFamily='Lab Grotesque'
pb={2}
textAlign='left'
component='p'
variant='body1'
sx={{ fontFamily: 'inherit' }}
variant='p'
>
Get started quickly with our search, visualization, analytics, and security capabilities.
</Typography>
Expand Down Expand Up @@ -157,12 +151,12 @@ export const Home = () => {
border: '.5px solid',
borderColor: '#e3e3e3',
borderRadius: 2,
fontFamily: 'Lab Grotesque',
textTransform: 'none',
width: {
md: 'auto',
xs: '100%',
},
fontFamily: 'inherit',
'&:hover': {
bgcolor: '#0045BE',
borderColor: '#0045BE',
Expand Down Expand Up @@ -207,6 +201,7 @@ export const Home = () => {
>
<Typography
component='h2'
fontFamily='Lab Grotesque'
fontWeight={900}
mb={{
md: 'inherit',
Expand All @@ -215,19 +210,15 @@ export const Home = () => {
}}
textAlign='center'
variant='h4'
sx={{
fontFamily:
'var(--ifm-font-family-headings, var(--ifm-font-family-base, "Lab Grotesque", "Segoe UI", Roboto, Helvetica, Arial, sans-serif))',
}}
>
Explore our product guides
</Typography>
<Typography
component='p'
fontFamily='Lab Grotesque'
mb={4}
textAlign='center'
variant='subtitle1'
sx={{ fontFamily: 'inherit' }}
>
Ensure app reliability and security with modern cloud-native monitoring and observability.
</Typography>
Expand Down Expand Up @@ -277,31 +268,46 @@ export const Home = () => {
{
label: 'Other Solutions',
},
].map(({ label }, index) => (
].map(({ label, ...rest }, index) => (
<Tab
key={label}
value={String(index)}
label={label}
sx={{
color: 'grey.700',
fontFamily: 'Lab Grotesque',
fontWeight: 'bold',
fontFamily:
'var(--ifm-font-family-headings, var(--ifm-font-family-base, "Lab Grotesque", "Segoe UI", Roboto, Helvetica, Arial, sans-serif))',
}}
value={String(index)}
{...rest}
/>
))}
</Tabs>

{features.map((feature, index) => (
<TabPanel key={index} value={String(index)} sx={{ px: 0 }}>
<Grid container direction="row" justifyContent="center" spacing={4} py={6}>
{feature.map((config) => (
<Grid item key={config.link} lg={4} md={6} xs={12}>
<Feature length={feature.length} {...config} />
</Grid>
))}
</Grid>
</TabPanel>
{features.map((feature, index) => tab === String(index) && (
<Grid
component={TabPanel}
container
direction='row'
justifyContent='center'
key={index}
py={6}
spacing={4}
value={String(index)}
>
{feature.map((config) => (
<Grid
item
key={config.link}
lg={4}
md={6}
xs={12}
>
<Feature
length={feature.length}
{...config}
/>
</Grid>
))}
</Grid>
))}
</TabContext>
</Stack>
Expand Down
Binary file removed static/img/get-started/sumo-academy-dark-mode.png
Binary file not shown.
Binary file removed static/img/get-started/sumo-academy-light-mode.png
Binary file not shown.
Binary file added static/img/get-started/sumo-academy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.