Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

myJSresume #137

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ import "./styles.css";
* If you don't have one of the social sites listed, leave it as an empty string.
*/
const siteProps = {
name: "Alexandrie Grenier",
title: "Web Designer & Content Creator",
email: "alex@example.com",
gitHub: "microsoft",
instagram: "microsoft",
linkedIn: "satyanadella",
name: "Talat Firdous",
title: "Web Developer",
email: "firdoustalat8@gmail.com",
gitHub: "https://github.com/TalatFirdous",
instagram: "",
linkedIn: "linkedin.com/in/talat-firdous-a12b9b23a ",
medium: "",
twitter: "microsoft",
youTube: "Code",
twitter: "",
youTube: "",
};

const primaryColor = "#4E567E";
Expand Down
18 changes: 9 additions & 9 deletions src/Components/About.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,27 +16,27 @@ import React from "react";
* Need an image? Check out https://unsplash.com to download a image you
* freely use on your site.
*/
import image from "../images/motion-background.jpg";
import image from "../images/background.avif";

const imageAltText = "purple and blue abstract background";

/**
* Sort description that expands on your title on the Home component.
*/
const description =
"I'm a UI/UX student studying at Barnett Technical University. I enjoy creating unique and simplistic user interfaces in creative ways.";
"I'm a B.tech student studying at Aliah University. I enjoy creating unique and simplistic websites in creative ways.";

/**
* List of some of skills or technologies you work on, are learning,
* passionate about, or enjoy,
*/
const skillsList = [
"Web design",
"User experience",
"Inclusive design",
"Focus group testing",
"Mobile user interfaces",
"Graphic design",
"C programming",
"java",
"Python",
"Html,css",
"javascript,React.js",

];

/**
Expand All @@ -45,7 +45,7 @@ const skillsList = [
* about you on a professional level.
*/
const detailOrQuote =
"I am passionate about solving problems in new creative ways to drive innovation. By leveraging my UI/UX experience I continually look for new and better ways to make tech accessible by all.";
"I am a fresher web developer and I am in final year of b.tech at Aliah University.I am looking for a internship as Web developer to inhance my skills and learn new skills to work.";

const About = () => {
return (
Expand Down
48 changes: 10 additions & 38 deletions src/Components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
import React from "react";
import PropTypes from "prop-types";

import devDotToIcon from "../images/socials/devdotto.svg";
import devDotToIcon from "";
import envelopeIcon from "../images/socials/envelope.svg";
import gitHubIcon from "../images/socials/github.svg";
import instagramIcon from "../images/socials/instagram.svg";
import instagramIcon from "";
import linkedInIcon from "../images/socials/linkedin.svg";
import mediumIcon from "../images/socials/medium.svg";
import twitterIcon from "../images/socials/twitter.svg";
import youTubeIcon from "../images/socials/youtube.svg";
import mediumIcon from "";
import twitterIcon from "";
import youTubeIcon from "";

/**
* 💡 Learning resources
Expand Down Expand Up @@ -65,25 +65,13 @@ const Footer = (props) => {
<img src={envelopeIcon} alt="email" className="socialIcon" />
</a>
)}
{devDotTo && (
<a href={`https://dev.to/${devDotTo}`} target="_blank" rel="noopener noreferrer">
<img src={devDotToIcon} alt="Dev.to" className="socialIcon" />
</a>
)}

{gitHub && (
<a href={`https://github.com/${gitHub}`} target="_blank" rel="noopener noreferrer">
<img src={gitHubIcon} alt="GitHub" className="socialIcon" />
</a>
)}
{instagram && (
<a
href={`https://www.instagram.com/${instagram}`}
target="_blank"
rel="noopener noreferrer"
>
<img src={instagramIcon} alt="Instagram" className="socialIcon" />
</a>
)}

{linkedIn && (
<a
href={`https://www.linkedin.com/in/${linkedIn}`}
Expand All @@ -93,25 +81,9 @@ const Footer = (props) => {
<img src={linkedInIcon} alt="LinkedIn" className="socialIcon" />
</a>
)}
{medium && (
<a href={`https://medium.com/@${medium}`} target="_blank" rel="noopener noreferrer">
<img src={mediumIcon} alt="Medium" className="socialIcon" />
</a>
)}
{twitter && (
<a href={`https://twitter.com/${twitter}`} target="_blank" rel="noopener noreferrer">
<img src={twitterIcon} alt="Twitter" className="socialIcon" />
</a>
)}
{youTube && (
<a
href={`https://www.youtube.com/c/${youTube}`}
target="_blank"
rel="noopener noreferrer"
>
<img src={youTubeIcon} alt="YouTube" className="socialIcon" />
</a>
)}



</div>
<p className="small" style={{ marginTop: 0, color: "white" }}>
Created by {name}
Expand Down
2 changes: 2 additions & 0 deletions src/Components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ const Header = () => {
<a href="#about">About</a>
<a href="#portfolio">Portfolio</a>
<a href="#footer">Contact</a>


</div>
);
};
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import PropTypes from "prop-types";
* Need an image? Check out https://unsplash.com to download a photo you
* freely use on your site.
*/
import image from "../images/woman-with-tablet.jpg";
import image from "../images/laptop.jpg";

const imageAltText = "Adult female in office setting leaning against a glass wall while holding a platinum Microsoft Surface Pro 7 in tablet mode preparing to write with Microsoft Surface Pen";
const imageAltText = "A laptop and cup on the table";

const Home = ({ name, title }) => {
return (
Expand Down
17 changes: 6 additions & 11 deletions src/Components/Portfolio.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,17 @@ const projectList = [
{
title: "Web Development for Beginners",
description:
"Contributed sketch note imagery to accompany each lesson. These help provide visual representation of what is being taught.",
url: "https://github.com/microsoft/web-dev-for-beginners",
"A pricing table for data recharge .",
url: "https://github.com/TalatFirdous/price-table",
},
{
title: "My Resume Site",
description:
"Created from Microsoft's resume workshop and deployed to GitHub pages. Includes my experience and design abilities.",
url: "https://github.com/microsoft/workshop-library/tree/main/full/build-resume-website",
"Created from git hub resume workshop and deployed to GitHub pages. Includes my experience and design abilities.",
url: "https://talatfirdous.github.io/MyResume/",
},
{
title: "GitHub Codespaces and github.dev",
description:
"Video interview to explain when to use GitHub.dev versus GitHub Codespaces, and how best to use each tool.",
url: "https://www.youtube.com/watch?v=c3hHhRME_XI",
},
];

]

const Portfolio = () => {
return (
Expand Down
Binary file added src/background.avif
Binary file not shown.
Binary file added src/images/socials/laptop.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading