Skip to content

Commit 5ef4111

Browse files
committed
update
1 parent 4c48b06 commit 5ef4111

32 files changed

+33
-156
lines changed

src/components/HireMeModal.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import { FiX } from 'react-icons/fi';
33
import Button from './reusable/Button';
44

55
const selectOptions = [
6-
'Web Application',
7-
'Mobile Application',
8-
'UI/UX Design',
9-
'Branding',
6+
'DevOps Engineer',
7+
'DevSecOps Engineer',
8+
'CTF Hosting',
9+
'Web Development',
1010
];
1111

1212
const HireMeModal = ({ onClose, onRequest }) => {

src/components/about/AboutClients.jsx

-26
Original file line numberDiff line numberDiff line change
@@ -1,26 +0,0 @@
1-
import { useContext } from 'react';
2-
import AboutMeContext from '../../context/AboutMeContext';
3-
import AboutClientSingle from './AboutClientSingle';
4-
5-
const AboutClients = () => {
6-
const { clientsData, clientsHeading } = useContext(AboutMeContext);
7-
8-
return (
9-
<div className="mt-10 sm:mt-20">
10-
<p className="font-general-medium text-2xl sm:text-3xl text-center text-primary-dark dark:text-primary-light">
11-
{clientsHeading}
12-
</p>
13-
<div className="grid grid-cols-2 sm:grid-cols-4 mt-10 sm:mt-14 gap-2">
14-
{clientsData.map((client) => (
15-
<AboutClientSingle
16-
title={client.title}
17-
image={client.img}
18-
key={client.id}
19-
/>
20-
))}
21-
</div>
22-
</div>
23-
);
24-
};
25-
26-
export default AboutClients;

src/components/about/AboutCounter.jsx

+1-24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { useCountUp } from 'react-countup';
2-
import CounterItem from './CounterItem';
32

43
const AboutCounter = () => {
54
useCountUp({ ref: 'experienceCounter', end: 12, duration: 2 });
@@ -10,30 +9,8 @@ const AboutCounter = () => {
109
return (
1110
<div className="mt-10 sm:mt-20 bg-primary-light dark:bg-ternary-dark shadow-sm">
1211
<div className="font-general-medium container mx-auto py-20 block sm:flex sm:justify-between items-center">
13-
<CounterItem
14-
title="Years of experience"
15-
counter={<span id="experienceCounter" />}
16-
measurement=""
17-
/>
18-
19-
<CounterItem
20-
title="Stars on GitHub"
21-
counter={<span id="githubStarsCounter" />}
22-
measurement="k+"
23-
/>
24-
25-
<CounterItem
26-
title="Positive feedback"
27-
counter={<span id="feedbackCounter" />}
28-
measurement="%"
29-
/>
30-
31-
<CounterItem
32-
title="Projects completed"
33-
counter={<span id="projectsCounter" />}
34-
measurement="%"
35-
/>
3612
</div>
13+
3714
</div>
3815
);
3916
};

src/components/blog/bloggallery.jsx

Whitespace-only changes.

src/components/contact/ContactDetails.jsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ import { FiPhone, FiMapPin, FiMail } from 'react-icons/fi';
33
const contacts = [
44
{
55
id: 1,
6-
name: 'Your Address, Your City, Your Country',
6+
name: 'Kamothe,Navi Mumbai,Maharashtra',
77
icon: <FiMapPin />,
88
},
99
{
1010
id: 2,
11-
name: 'email@domain.com',
11+
name: 'mranoint@gmail.com',
1212
icon: <FiMail />,
1313
},
1414
{
1515
id: 3,
16-
name: '555 8888 888',
16+
name: '7071234567',
1717
icon: <FiPhone />,
1818
},
1919
];

src/components/projects/ProjectInfo.jsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const ProjectInfo = () => {
2222
>
2323
<span>{info.title}: </span>
2424
<a
25-
href="https://stoman.me"
25+
href="https://abisec.xyz"
2626
className={
2727
info.title === 'Website' ||
2828
info.title === 'Phone'

src/components/projects/ProjectsFilter.jsx

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
const selectOptions = [
22
'Web Application',
3-
'Mobile Application',
4-
'UI/UX Design',
5-
'Branding',
3+
'Jenkins',
4+
'Ansible',
5+
'Teraform',
6+
'System Monitoring',
7+
'Android Apk Deployment',
8+
'Cybersecurity & Bughunting'
9+
610
];
711

812
const ProjectsFilter = ({ setSelectProject }) => {

src/components/shared/AppHeader.jsx

+14-7
Original file line numberDiff line numberDiff line change
@@ -156,20 +156,27 @@ const AppHeader = () => {
156156
About Me
157157
</Link>
158158
<Link
159-
to="/contact"
159+
to="/poem"
160160
className="block text-left text-lg text-primary-dark dark:text-ternary-light hover:text-secondary-dark dark:hover:text-secondary-light sm:mx-4 mb-2 sm:py-2"
161-
aria-label="Contact"
161+
aria-label="Poem"
162162
>
163-
Contact
163+
Poem
164164
</Link>
165-
166165
<Link
167-
to="/poem"
166+
to="/blog"
168167
className="block text-left text-lg text-primary-dark dark:text-ternary-light hover:text-secondary-dark dark:hover:text-secondary-light sm:mx-4 mb-2 sm:py-2"
169-
aria-label="Poem"
168+
aria-label="Blog"
170169
>
171-
Poem
170+
Blog
172171
</Link>
172+
<Link
173+
to="/contact"
174+
className="block text-left text-lg text-primary-dark dark:text-ternary-light hover:text-secondary-dark dark:hover:text-secondary-light sm:mx-4 mb-2 sm:py-2"
175+
aria-label="Contact"
176+
>
177+
Contact
178+
</Link>
179+
173180
</div>
174181

175182
{/* Header right section buttons */}

src/context/AboutMeContext.jsx

-30
Original file line numberDiff line numberDiff line change
@@ -1,30 +0,0 @@
1-
import { useState, createContext } from 'react';
2-
import { aboutMeData } from '../data/aboutMeData';
3-
import { clientsHeading as clientsPageHeading } from '../data/clientsData';
4-
import { clientsData as clientsDataJson } from '../data/clientsData';
5-
6-
const AboutMeContext = createContext();
7-
8-
export const AboutMeProvider = ({ children }) => {
9-
const [aboutMe, setAboutMe] = useState(aboutMeData);
10-
11-
const clientsHeading = clientsPageHeading;
12-
13-
const [clientsData, setClientsData] = useState(clientsDataJson);
14-
15-
return (
16-
<AboutMeContext.Provider
17-
value={{
18-
aboutMe,
19-
setAboutMe,
20-
clientsHeading,
21-
clientsData,
22-
setClientsData,
23-
}}
24-
>
25-
{children}
26-
</AboutMeContext.Provider>
27-
);
28-
};
29-
30-
export default AboutMeContext;

src/data/aboutMeData.js

+1-1
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: 'Abishek Kafle',
55
},
66
{
77
id: 2,

src/data/clientsData.js

-54
Original file line numberDiff line numberDiff line change
@@ -1,54 +0,0 @@
1-
// Import images
2-
import AmazonImage from '../images/brands/amazon_gray.png';
3-
import SonyImage from '../images/brands/sony_gray.png';
4-
import AdidasImage from '../images/brands/adidas_gray.png';
5-
import FilaImage from '../images/brands/fila_gray.png';
6-
import NBImage from '../images/brands/nb_gray.png';
7-
import SamsungImage from '../images/brands/samsung_gray.png';
8-
import CanonImage from '../images/brands/canon_gray.png';
9-
import PumaImage from '../images/brands/puma_gray.png';
10-
11-
export const clientsHeading = 'Some of the brands that trust me';
12-
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-
];

src/images/brands/adidas_color.png

-7.72 KB
Binary file not shown.

src/images/brands/adidas_gray.png

-4.1 KB
Binary file not shown.

src/images/brands/amazon_color.png

-4.16 KB
Binary file not shown.

src/images/brands/amazon_gray.png

-3.84 KB
Binary file not shown.

src/images/brands/canon_color.png

-5.93 KB
Binary file not shown.

src/images/brands/canon_gray.png

-3.56 KB
Binary file not shown.

src/images/brands/fila_color.png

-5.36 KB
Binary file not shown.

src/images/brands/fila_gray.png

-2.74 KB
Binary file not shown.

src/images/brands/nb_color.png

-9.91 KB
Binary file not shown.

src/images/brands/nb_gray.png

-4.39 KB
Binary file not shown.

src/images/brands/puma_color.png

-4.79 KB
Binary file not shown.

src/images/brands/puma_gray.png

-3.14 KB
Binary file not shown.

src/images/brands/samsung_color.png

-8.63 KB
Binary file not shown.

src/images/brands/samsung_gray.png

-4.08 KB
Binary file not shown.

src/images/brands/sony_color.png

-3.41 KB
Binary file not shown.

src/images/brands/sony_gray.png

-3.13 KB
Binary file not shown.

src/pages/AboutMe.jsx

-2
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

@@ -31,7 +30,6 @@ const About = () => {
3130
exit={{ opacity: 0 }}
3231
className="container mx-auto"
3332
>
34-
<AboutClients />
3533
</motion.div>
3634
</AboutMeProvider>
3735
);

src/pages/Blog.jsx

Whitespace-only changes.

src/pages/Contact.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import { motion } from 'framer-motion';
22
import ContactDetails from '../components/contact/ContactDetails';
33
import ContactForm from '../components/contact/ContactForm';
44

5+
56
const Contact = () => {
67
return (
78
<motion.div

src/pages/Home.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import ProjectsGrid from '../components/projects/ProjectsGrid';
44
import { ProjectsProvider } from '../context/ProjectsContext';
55
import Button from '../components/reusable/Button';
66

7+
78
const Home = () => {
89
return (
910
<div className="container mx-auto">

src/pages/Poem.jsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
// Poem.jsx
2-
32
import React from 'react';
43

54
const Poem = () => {

0 commit comments

Comments
 (0)