Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Oct 11, 2024
1 parent 81a581c commit c12796e
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 21 deletions.
2 changes: 1 addition & 1 deletion fetch.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,4 +127,4 @@ if (MEDIUM_USERNAME !== undefined) {
});

req.end();
}
}
2 changes: 1 addition & 1 deletion src/components/githubProfileCard/GithubProfileCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function GithubProfileCard({prof}) {
)}
<div className="opp-div">
<span className="desc-prof">
Open for opportunities: {prof.hireable}
Open for opportunities: {prof.hireable}
</span>
</div>
<SocialMedia />
Expand Down
12 changes: 5 additions & 7 deletions src/components/header/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@
// }
// export default Header;


import React, { useContext, useRef } from "react";
import React, {useContext, useRef} from "react";
import Headroom from "react-headroom";
import "./Header.scss";
import ToggleSwitch from "../ToggleSwitch/ToggleSwitch";
Expand All @@ -107,11 +106,11 @@ import {
blogSection,
talkSection,
achievementSection,
resumeSection,
resumeSection
} from "../../portfolio";

function Header() {
const { isDark } = useContext(StyleContext);
const {isDark} = useContext(StyleContext);
const viewExperience = workExperiences.display;
const viewOpenSource = openSource.display;
const viewSkills = skillsSection.display;
Expand Down Expand Up @@ -146,7 +145,7 @@ function Header() {
<label
className="menu-icon"
htmlFor="menu-btn"
style={{ color: "white" }}
style={{color: "white"}}
>
<span className={isDark ? "navicon navicon-dark" : "navicon"}></span>
</label>
Expand Down Expand Up @@ -176,7 +175,7 @@ function Header() {
<a href="#achievements">Achievements</a>
</li>
)}
{/*{viewBlog && (
{/*{viewBlog && (
<li onClick={handleMenuItemClick}>
<a href="#blogs">Blogs</a>
</li>
Expand Down Expand Up @@ -207,4 +206,3 @@ function Header() {
}

export default Header;

6 changes: 5 additions & 1 deletion src/containers/greeting/Greeting.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ export default function Greeting() {
</p>
<SocialMedia />
<div className="button-greeting-div">
<Button text="Book 1:1 Free Meeting" href="https://calendly.com/saadrasheeddev/businessgrowth" newTab={true}/>
<Button
text="Book 1:1 Free Meeting"
href="https://calendly.com/saadrasheeddev/businessgrowth"
newTab={true}
/>
{greeting.resumeLink && (
<a
href={require("./resume.pdf")}
Expand Down
28 changes: 17 additions & 11 deletions src/portfolio.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,30 @@ const socialMediaLinks = {

const skillsSection = {
title: "What I do",
subTitle: "PASSIONATE DATA SCIENTIST WHO LOVES TO UNCOVER INSIGHTS FROM DATA AND SOLVE COMPLEX PROBLEMS WITH AI",
subTitle:
"PASSIONATE DATA SCIENTIST WHO LOVES TO UNCOVER INSIGHTS FROM DATA AND SOLVE COMPLEX PROBLEMS WITH AI",
skills: [
emoji(
"⚡ Develop end-to-end machine learning models, from data wrangling to deployment"
),
emoji("⚡ Build powerful data visualizations to uncover trends and insights"),
emoji(
"⚡ Build powerful data visualizations to uncover trends and insights"
),
emoji(
"⚡ Leverage AI techniques to create intelligent solutions for complex problems"
),
emoji("⚡ Develop and deploy cloud-based machine learning solutions using AWS, GCP, or Azure"),
emoji("⚡ Integration of third-party APIs and services like AWS, Google Cloud, or custom-built AI models"),
emoji(
"⚡ Develop and deploy cloud-based machine learning solutions using AWS, GCP, or Azure"
),
emoji(
"⚡ Integration of third-party APIs and services like AWS, Google Cloud, or custom-built AI models"
)
],

/* Make Sure to include correct Font Awesome Classname to view your icon
https://fontawesome.com/icons?d=gallery */

softwareSkills: [
softwareSkills: [
{
skillName: "Python",
fontAwesomeClassname: "fab fa-python"
Expand Down Expand Up @@ -133,13 +140,13 @@ const educationInfo = {
schoolName: "University of London",
logo: require("./assets/images/uolLogo.png"),
subHeader: "BSc Computer Science (Hons)",
duration: "October 2021 - September 2024",
duration: "October 2021 - September 2024"
// desc: "Participated in the research of XXX and published 3 papers.",
// descBullets: [
// "Lorem ipsum dolor sit amet, consectetur adipiscing elit",
// "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
// ]
},
}
// {
// schoolName: "Whales College",
// logo: require("./assets/images/stanfordLogo.png"),
Expand Down Expand Up @@ -184,7 +191,6 @@ const techStack = {
displayCodersrank: false // Set true to display codersrank badges section
};


// Work experience section

const workExperiences = {
Expand All @@ -211,7 +217,7 @@ const workExperiences = {
"Scraped data for 75+ countries, including visa requirements, high-paying professions, living expenses, and opportunities.",
"Transformed data into a consistent format for seamless country comparisons."
]
},
}
// {
// role: "Software Engineer Intern",
// company: "Airbnb",
Expand Down Expand Up @@ -286,7 +292,7 @@ const achievementSection = {
{
name: "Certificate",
url: "https://drive.google.com/file/d/1aM0GBJZZOy6fMk7q3XOzyd9TqRy6r-pg/view?usp=sharing"
},
}
]
},
{
Expand All @@ -309,7 +315,7 @@ const achievementSection = {
url: "https://coursera.org/share/f624df220cbd0abf2514f6802387acf3"
}
]
},
}

// {
// title: "PWA Web App Developer",
Expand Down

0 comments on commit c12796e

Please sign in to comment.