-
Notifications
You must be signed in to change notification settings - Fork 580
Expand file tree
/
Copy pathPortfolio.jsx
More file actions
87 lines (81 loc) · 2.92 KB
/
Portfolio.jsx
File metadata and controls
87 lines (81 loc) · 2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/**
* Portfolio component
*
* Highlights some of your creations. These can be designs, websites,
* open source contributions, articles you've written, and more.
*
* This is a great area for you to continually add to and refine
* as you continue to learn and create.
*/
import React from "react";
/**
* Desk image
*
* Below is a sample desk image. Feel free to update this to an image of your choice,
* updating below imageAltText to a string that represents what you see in that image.
*
* Need an image? Check out https://unsplash.com to download a photo you
* can freely use on your site.
*/
import image from "../images/design-desk.jpeg";
const imageAltText = "desktop with books and laptop";
/**
* Project list
*
* An array of objects that will be used to display your project
* links section. Below is a sample, update to reflect links you'd like to highlight.
*/
const projectList = [
{
title: "10 Things To Know About Azure Static Web Apps 🎉",
description:
"Collaboration to create a beginner-friendly article to help explain Azure Static Web Apps and tooling to get started.",
url: "https://dev.to/azure/10-things-to-know-about-azure-static-web-apps-3n4i",
},
{
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",
},
{
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",
},
{
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 (
<section className="portfolio padding" id="portfolio">
<h2 style={{ textAlign: "center" }}>Portfolio</h2>
<div style={{ display: "flex", flexDirection: "row", paddingTop: "3rem" }}>
<div style={{ maxWidth: "40%", alignSelf: "center" }}>
<img
src={image}
className="animated-image"
style={{ height: "90%", width: "100%", objectFit: "cover" }}
alt={imageAltText}
/>
</div>
<div className="container">
{projectList.map((project) => (
<div className="box" key={project.title}>
<a href={project.url} target="_blank" rel="noopener noreferrer">
<h3 style={{ flexBasis: "40px" }}>{project.title}</h3>
</a>
<p className="small">{project.description}</p>
</div>
))}
</div>
</div>
</section>
);
};
export default Portfolio;