diff --git a/src/sections/Careers/Careers-Programs-grid/index.js b/src/sections/Careers/Careers-Programs-grid/index.js index be02d1f503e2..b8d838a46833 100644 --- a/src/sections/Careers/Careers-Programs-grid/index.js +++ b/src/sections/Careers/Careers-Programs-grid/index.js @@ -5,6 +5,7 @@ import PageHeader from "../../../reusecore/PageHeader"; import Image from "../../../components/image"; import { ProgramsPageWrapper } from "./ProgramGrid.style"; import { useStyledDarkMode } from "../../../theme/app/useStyledDarkMode"; +import { ProjectWrapper } from "../../Projects/Project-grid/projectGrid.style"; const ProgramsGrid = ({ hide_path, sub_section }) => { const data = useStaticQuery( @@ -58,42 +59,53 @@ const ProgramsGrid = ({ hide_path, sub_section }) => { return ( - -
- -
- - {programs.reverse().map(({ id, frontmatter, fields }) => ( - - -
-
- {frontmatter.title} + + +

+ Build Your Career at Layer5 +

+
+ +
+ + {programs.reverse().map(({ id, frontmatter, fields }) => ( + + +
+
+ {frontmatter.title} +
+
{frontmatter.program}
-
{frontmatter.program}
-
- - - ))} - -
-

+ + + ))} + +

+

Layer5 is driven by its people, who are the stewards of our culture and principles. Join us on the journey to enabling the world's most innovative companies make the transition to cloud native and multi-cloud through engineering-empowered automation. -

+

- -
+ +
+ + + ); };