Skip to content

Commit

Permalink
Fix bot image issue
Browse files Browse the repository at this point in the history
  • Loading branch information
LegendaryGene committed Mar 1, 2024
1 parent 1897910 commit 1e09f11
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/assets/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import worldmap from './backgrounds/world-map.png';

import logo from './logo/logo.gif';
import logotext from './logo/logo-text-black.png';
import dribble from './projects/Dribblerem.png'

import shaq from './personal/shaq.png';
import robobg from './backgrounds/robobg.jpg'
Expand Down Expand Up @@ -67,6 +68,7 @@ export {
worldmap,
logo,
logotext,
dribble,
shaq,
robobg,
backend,
Expand Down
3 changes: 2 additions & 1 deletion src/components/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { styles } from '../styles';
import { services } from '../constants';
import { fadeIn, textVariant } from '../utils/motion';
import { SectionWrapper } from '../hoc';
import { dribble } from '../assets'
import CustomButton2 from './Button_Qualification';

const ServiceCard = ({ index, title, icon }) => {
Expand Down Expand Up @@ -137,7 +138,7 @@ const About = () => {
</div>
<div className="flex flex-col items-end">
<motion.img
src='/src/assets/projects/Dribblerem.png'
src={dribble}
alt="Robo2"
style={{ width: '40.83vw', height: 'auto', marginTop: '18.29vh', marginLeft: '-10vw' }} // Adjust the size as needed
variants={fadeIn('right', 'spring', 0.5, 0.75)}
Expand Down

0 comments on commit 1e09f11

Please sign in to comment.