From 34e575f65b8dc4b8faa8a6c1afd1af82b04d231d Mon Sep 17 00:00:00 2001 From: apple Date: Wed, 24 Jul 2024 19:59:41 +0530 Subject: [PATCH] add spacing Signed-off-by: apple --- .../Careers/Careers-Programs-grid/index.js | 76 +++++++++++-------- 1 file changed, 44 insertions(+), 32 deletions(-) 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. -

+

- -
+ +
+ + + ); };