Skip to content

Commit 0bbb23f

Browse files
committed
fix: correct relative import path for academy-catalog.gif
Signed-off-by: ITACHI161105 <utkarsha137@gmail.com>
1 parent 9a52202 commit 0bbb23f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/components/Academy/Features-Section/AcademyFeaturesCarousel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
import React, { useState } from "react";
22
import styled from "styled-components";
33
import PopOutCard from "../../PopOutCardCarousel";
4-
import Levels from "/static/images/academy-catalog.gif";
4+
import Levels from "../../../../static/images/academy-catalog.gif";
55
import Challenges from "./challenges.webp";
66
import Badges from "./badges.webp";
77
import Track from "./track.webp";
88

99
const CONTENT = [
1010
{
1111
title: "Structured Learning Paths",
12-
img: "/images/academy-catalog.gif",
12+
img: Levels,
1313
description:
1414
"Comprehensive DevOps learning paths designed for different skill levels — from beginner to advanced. Master Kubernetes, cloud and cloud native technologies with hands-on experience.",
1515
},

src/components/Academy/Features-Section/AcademyFeaturesMobileSwiper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ import "swiper/css";
55
import "swiper/css/effect-cards";
66
import { EffectCards, Pagination, Navigation, Autoplay } from "swiper/modules";
77
import styled from "styled-components";
8-
import Levels from "/static/images/academy-catalog.gif";
8+
import Levels from "../../../../static/images/academy-catalog.gif";
99
import Challenges from "./challenges.webp";
1010
import Badges from "./badges.webp";
1111
import Track from "./track.webp";
1212

1313
const CONTENT = [
1414
{
1515
title: "Structured Learning Paths",
16-
img: "/images/academy-catalog.gif",
16+
img: Levels,
1717
description:
1818
"Comprehensive DevOps learning paths designed for different skill levels — from beginner to advanced. Master Kubernetes, cloud and cloud native technologies with hands-on experience.",
1919
gradient: "one",

0 commit comments

Comments
 (0)