-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
06149d1
commit ae371c8
Showing
4 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import './audreaCard.scss'; | ||
import image from './audrea_headshot.jpg'; | ||
|
||
// | ||
|
||
function AudreaCard() { | ||
return ( | ||
<div className="cardContainer"> | ||
|
||
<div className="card"> | ||
<img className="imageContainer" src={image} alt="Headshot of Audrea Cook" /> | ||
</div> | ||
|
||
<div className="card"> | ||
<h3>Audrea Cook</h3> | ||
<p>Software Engineer</p> | ||
<a href="https://codewitch.dev">CodeWitch.dev</a> | ||
<br></br> | ||
<a href="https://www.github.com/audthecodewitch">GitHub</a> | ||
<br></br> | ||
<a href="https://www.linkedin.com/in/audreacook">LinkedIn</a> | ||
</div> | ||
|
||
</div> | ||
); | ||
} | ||
|
||
export default AudreaCard; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
.cardContainer { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr; | ||
grid-template-rows: auto; | ||
align-items: center; | ||
} | ||
.card { | ||
margin: auto; | ||
//padding: 1rem 1rem 1rem 1rem; | ||
//align-items: right; | ||
text-align: center; | ||
//border: 2px solid white; | ||
} | ||
.image { | ||
background-image: url(./audrea_headshot.jpg); | ||
} | ||
.imageContainer { | ||
//align-items: left; | ||
width: 120px; | ||
height: auto; | ||
margin: auto; | ||
border-radius: 50%; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters