@@ -2,12 +2,9 @@ import React from "react";
22import styled from "styled-components" ;
33import { Row , Col , Container } from "../../../reusecore/Layout" ;
44import Button from "../../../reusecore/Button" ;
5- import Five from "../image/hero-section.png" ;
6-
7-
8- const AcademyHeaderWrapper = styled . div `
9- font-family: "Qanelas Soft", sans-serif;
10-
5+ import Cone from "../../../assets/images/gitops/conelight.svg" ;
6+ import { ReactComponent as AcademyLogo } from "../../../assets/images/academy/academy.svg" ;
7+ const AcademyHeaderWrapper = styled . div `
118 .academy-platform.header {
129 background: linear-gradient(135deg, #0a1a1a 0%, #1a2d2d 25%, #2d4a47 50%, #1a2d2d 75%, #0a1a1a 100%);
1310 padding: 2rem 0;
@@ -94,7 +91,14 @@ const AcademyHeaderWrapper = styled.div`
9491 }
9592 }
9693 }
97-
94+ .hero-image-container {
95+ height: 250px;
96+ width: 300px;
97+ position: relative;
98+ display:flex;
99+ align-items: center;
100+ justify-content: center;
101+ }
98102
99103 /* Mobile Styles */
100104 @media screen and (max-width: 768px) {
@@ -178,11 +182,13 @@ const Header = ({ isDark }) => {
178182 </ div >
179183 </ Col >
180184
181- < Col className = "col academy-visual" $lg = { 5 } $md = { 6 } >
182- < div className = "cards-container" >
183- < img src = { Five } alt = "Academy Hero Section" />
185+ < Col className = "hero-image" $lg = { 6 } $md = { 6 } >
186+ < div className = "hero-image-container" >
187+ < AcademyLogo className = "academy-logo" style = { { position : "absolute" , height : "180px" , width : "180px" } } />
188+ < img src = { Cone } className = "cone-image" />
184189 </ div >
185190 </ Col >
191+
186192 </ Row >
187193 </ Container >
188194 </ div >
0 commit comments