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 Feb 10, 2024
1 parent a43935c commit d385657
Show file tree
Hide file tree
Showing 11 changed files with 153 additions and 139 deletions.
2 changes: 1 addition & 1 deletion .vs/ProjectSettings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"CurrentProjectSetting": null
}
}
10 changes: 8 additions & 2 deletions src/components/footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,16 @@ export default function Footer() {
return (
<Fade bottom duration={1000} distance="5px">
<div className="footer-div">
<p style={{display:'none'}} className={isDark ? "dark-mode footer-text" : "footer-text"}>
<p
style={{display: "none"}}
className={isDark ? "dark-mode footer-text" : "footer-text"}
>
{emoji("Made with ❤️ by DeveloperFolio Team")}
</p>
<p style={{display:'none'}} className={isDark ? "dark-mode footer-text" : "footer-text"}>
<p
style={{display: "none"}}
className={isDark ? "dark-mode footer-text" : "footer-text"}
>
Theme by{" "}
<a href="https://github.com/saadpasta/developerFolio">
developerFolio
Expand Down
18 changes: 9 additions & 9 deletions src/components/githubProfileCard/GithubProfileCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export default function GithubProfileCard({prof}) {
<div className="blog-header">
<p className="subTitle blog-subtitle">{contactInfo.subtitle}</p>
</div>
<div
<div
className={
isDark ? "dark-mode contact-text-div" : "contact-text-div"
}
Expand All @@ -49,16 +49,18 @@ export default function GithubProfileCard({prof}) {
<br />
<SocialMedia />
</div>
<div className="opp-div">
<div className="opp-div">
<span className="desc-prof-hirable">
Open for opportunities: {prof.hireable}
</span>
</div>

<div className="bio-text-container">
<h2 className="bio-text">{emoji(contactInfo.subtitle2)}</h2>
<h2 className="bio-text">{emoji(contactInfo.subtitle3)}</h2>
<h2 style={{display:'none'}} className="bio-text">"{emoji(String(prof.bio))}"</h2>

<div className="bio-text-container">
<h2 className="bio-text">{emoji(contactInfo.subtitle2)}</h2>
<h2 className="bio-text">{emoji(contactInfo.subtitle3)}</h2>
<h2 style={{display: "none"}} className="bio-text">
"{emoji(String(prof.bio))}"
</h2>
</div>
{prof.location !== null && (
<div className="location-div">
Expand All @@ -80,8 +82,6 @@ export default function GithubProfileCard({prof}) {
</span>
</div>
)}


</div>
<div className="image-content-profile">
<img
Expand Down
4 changes: 2 additions & 2 deletions src/components/githubProfileCard/GithubProfileCard.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
font-size: 22px;
}

.bio-text-container{
margin-top: 30px;
.bio-text-container {
margin-top: 30px;
}

.desc-prof-hirable {
Expand Down
6 changes: 2 additions & 4 deletions src/components/socialMedia/SocialMedia.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ export default function socialMedia() {
<span></span>
</a>
) : null}
{socialMediaLinks.github ? (

{socialMediaLinks.github ? (
<a
href={socialMediaLinks.github}
className="icon-button github"
Expand All @@ -44,8 +44,6 @@ export default function socialMedia() {
</a>
) : null}



{socialMediaLinks.gitlab ? (
<a
href={socialMediaLinks.gitlab}
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Main.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const Main = () => {
<Education />
<WorkExperience />
<StartupProject />
<Projects />
<Projects />
<Achievement />
<Blogs />
<Talks />
Expand Down
4 changes: 2 additions & 2 deletions src/containers/contact/Contact.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function Contact() {
>
{contactInfo.subtitle}
</p>
<p
<p
className={
isDark
? "dark-mode contact-subtitle"
Expand All @@ -33,7 +33,7 @@ export default function Contact() {
>
{contactInfo.subtitle2}
</p>
<p
<p
className={
isDark
? "dark-mode contact-subtitle"
Expand Down
3 changes: 1 addition & 2 deletions src/containers/education/Education.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@
}

.education-card-container {

flex-direction: row;
padding-top: 20px;
display: grid;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
gap: 1rem 1rem;
}
Expand Down
8 changes: 6 additions & 2 deletions src/containers/workExperience/WorkExperience.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,12 @@ export default function WorkExperience() {
);
})}
</div>
<div className="experience-see-more-button">
<Button text="See More" href={socialMediaLinks.linkedin} newTab={true} />
<div className="experience-see-more-button">
<Button
text="See More"
href={socialMediaLinks.linkedin}
newTab={true}
/>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/containers/workExperience/WorkExperience.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
margin-top: 2rem;
}

.experience-see-more-button{
.experience-see-more-button {
display: flex;
justify-content: center;
align-items: center;
Expand Down
Loading

0 comments on commit d385657

Please sign in to comment.