Skip to content

Commit de6226f

Browse files
committed
Fixed bugs when displaying the projects
1 parent d0f4401 commit de6226f

File tree

5 files changed

+2
-9
lines changed

5 files changed

+2
-9
lines changed

src/components/experiences/Exp.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import "react-vertical-timeline-component/style.min.css";
1212
import { styles } from "../styles";
1313
import { experiences } from "../../components/styles";
1414
import { SectionWrapper } from "../../hoc";
15-
import { textVariant } from "../../utils/motion";
15+
1616

1717

1818

@@ -21,7 +21,7 @@ const ExperienceCard = ({ experience }) => {
2121
const backgroundColor = theme === 'dark' ? "#fff" : "#F5F5F5"; // Dark or light background
2222
const textColor = theme === 'dark' ? "#fff" : "#000000"; // Text color based on theme
2323
const arrowColor = theme === 'dark' ? "#fff" : "#F5F5F5";
24-
const textColor1 = theme === 'dark' ? "#000000" : "#000000"; // Text color based on theme
24+
2525
return (
2626
<VerticalTimelineElement
2727
contentStyle={{

src/components/shared/AppBanner.jsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,6 @@ import { FiArrowDownCircle } from 'react-icons/fi';
22
import developerLight from '../../images/developer.svg';
33
import developerDark from '../../images/developer-dark.svg';
44
import { motion } from 'framer-motion';
5-
import logoDark from "../../images/logo-dark.svg";
6-
import logoLight from "../../images/logo-light.svg";
7-
import {experiences} from "../styles";
8-
import {VerticalTimeline, VerticalTimelineElement} from "react-vertical-timeline-component";
95
import {useTheme} from "../../ThemeContext";
106

117

src/components/shared/AppHeader.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { useState } from 'react';
22
import { FiMenu, FiMoon, FiSun, FiX } from 'react-icons/fi';
33
import { Link } from 'react-router-dom';
4-
import useThemeSwitcher from '../../hooks/useThemeSwitcher';
54
import HireMeModal from '../HireMeModal';
65
import logoLight from '../../images/logo.svg';
76
import logoDark from '../../images/logo.svg';

src/pages/AboutMe.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import AboutMeBio from '../components/about/AboutMeBio';
22
import AboutCounter from '../components/about/AboutCounter';
3-
import AboutClients from '../components/about/AboutClients';
43
import { AboutMeProvider } from '../context/AboutMeContext';
54
import { motion } from 'framer-motion';
65

src/pages/ProjectSingle.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { useParams } from 'react-router-dom';
2-
import { useContext } from 'react';
32
import { singleProjectData } from '../data/ProjectsData';
43
import ProjectGallery from '../components/projects/ProjectGallery';
54
import ProjectHeader from '../components/projects/ProjectHeader';

0 commit comments

Comments
 (0)