Skip to content

Commit a583150

Browse files
committed
About section is done
1 parent 39bffbe commit a583150

File tree

5 files changed

+21
-69
lines changed

5 files changed

+21
-69
lines changed

src/components/about/AboutMeBio.jsx

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import profileImage from '../../images/profile.jpeg';
1+
import profileImage from '../../images/profile_picture.png';
22
import { useContext } from 'react';
33
import AboutMeContext from '../../context/AboutMeContext';
44

@@ -12,14 +12,23 @@ const AboutMeBio = () => {
1212
</div>
1313

1414
<div className="font-general-regular w-full sm:w-3/4 text-left">
15-
{aboutMe.map((bio) => (
16-
<p
17-
className="mb-4 text-ternary-dark dark:text-ternary-light text-lg"
18-
key={bio.id}
19-
>
20-
{bio.bio}
21-
</p>
22-
))}
15+
<p className="mb-4 text-ternary-dark dark:text-ternary-light text-lg">
16+
I am a passionate and results-driven Full Stack Developer with expertise in <b> C#, .NET, React, JavaScript </b> and integrating APIs with third-party applications. With hands-on experience working on diverse projects in various companies across <b> Winnipeg, Canada </b>, I bring real-world problem-solving skills to the table. My academic foundation in <b> Business Information Technology </b>
17+
from <b> Red River College </b> equips me with a unique blend of technical expertise and business acumen.
18+
</p>
19+
20+
<p className="mb-4 text-ternary-dark dark:text-ternary-light text-lg">
21+
I pride myself on my ability to "get things done on time." Debugging and troubleshooting errors is one of my core strengths, allowing me to resolve complex issues effectively. I'm energized by taking on new challenges and thrive in dynamic environments that foster growth and innovation.
22+
</p>
23+
24+
<p className="mb-4 text-ternary-dark dark:text-ternary-light text-lg">
25+
I am always eager to learn new technologies and approaches, as I firmly believe in continuous improvement. Whether it's tackling innovative projects or contributing to impactful solutions, I am open to opportunities that allow me to grow and make meaningful contributions.
26+
</p>
27+
28+
<p className="mb-4 text-ternary-dark dark:text-ternary-light text-lg">
29+
<b>Let's build something amazing together!</b>
30+
</p>
31+
2332
</div>
2433
</div>
2534
);

src/data/aboutMeData.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const aboutMeData = [
22
{
33
id: 1,
4-
bio: 'Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nihil vel illum asperiores dignissimos cumque quibusdam et fugiat voluptatem nobis suscipit explicabo, eaque consequatur nesciunt, fugit eligendi corporis laudantium adipisci soluta? Lorem ipsum, dolor sit amet consectetur adipisicing elit. Incidunt totam dolorum, ducimus obcaecati, voluptas facilis molestias nobis ut quam natus similique inventore excepturi optio ipsa deleniti fugit illo. Unde, amet! Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ipsum illo necessitatibus perspiciatis! Aperiam perferendis labore temporibus, eos culpa corporis recusandae quas, fuga voluptatibus nesciunt odit libero tenetur neque consequatur ea.',
4+
bio: 'I am a passionate and results-driven Full Stack Developer with expertise in C#, .NET, React, JavaScript, and integrating APIs with third-party applications. With hands-on experience working on diverse projects in various companies across Winnipeg, Canada, I bring real-world problem-solving skills to the table. My academic foundation in Business Information Technology from Red River College equips me with a unique blend of technical expertise and business acumen.',
55
},
66
{
77
id: 2,

src/data/clientsData.js

Lines changed: 1 addition & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -10,45 +10,4 @@ import PumaImage from '../images/brands/puma_gray.png';
1010

1111
export const clientsHeading = 'Some of the brands that trust me';
1212

13-
export const clientsData = [
14-
{
15-
id: 1,
16-
title: 'Amazon',
17-
img: AmazonImage,
18-
},
19-
{
20-
id: 2,
21-
title: 'Sony',
22-
img: SonyImage,
23-
},
24-
{
25-
id: 3,
26-
title: 'Adidas',
27-
img: AdidasImage,
28-
},
29-
{
30-
id: 4,
31-
title: 'FILA',
32-
img: FilaImage,
33-
},
34-
{
35-
id: 5,
36-
title: 'NB',
37-
img: NBImage,
38-
},
39-
{
40-
id: 6,
41-
title: 'SAMSUNG',
42-
img: SamsungImage,
43-
},
44-
{
45-
id: 7,
46-
title: 'CANON',
47-
img: CanonImage,
48-
},
49-
{
50-
id: 8,
51-
title: 'PUMA',
52-
img: PumaImage,
53-
},
54-
];
13+
export const clientsData = []

src/images/profile_picture.png

566 KB
Loading

src/pages/AboutMe.jsx

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,7 @@ const About = () => {
1616
<AboutMeBio />
1717
</motion.div>
1818

19-
{/** Counter without paddings */}
20-
<motion.div
21-
initial={{ opacity: 0 }}
22-
animate={{ opacity: 1, delay: 1 }}
23-
exit={{ opacity: 0 }}
24-
>
25-
<AboutCounter />
26-
</motion.div>
27-
28-
<motion.div
29-
initial={{ opacity: 0 }}
30-
animate={{ opacity: 1, delay: 1 }}
31-
exit={{ opacity: 0 }}
32-
className="container mx-auto"
33-
>
34-
<AboutClients />
35-
</motion.div>
19+
3620
</AboutMeProvider>
3721
);
3822
};

0 commit comments

Comments
 (0)