Skip to content

Commit

Permalink
Update profile image and fix brand name
Browse files Browse the repository at this point in the history
  • Loading branch information
markhagemann committed Jun 13, 2021
1 parent 6904c4d commit d7b2890
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
7 changes: 4 additions & 3 deletions src/common/components/UI/Sidebar/Profile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ const Profile: React.FC = () => (
<StaticQuery
query={graphql`
query {
placeholderImage: file(relativePath: { eq: "profile.png" }) {
placeholderImage: file(relativePath: { eq: "myself-and-taito.jpg" }) {
childImageSharp {
fixed(width: 175) {
fixed(width: 575) {
...GatsbyImageSharpFixed
}
}
}
}
`}
render={data => (
<div style={{ maxWidth: '175px' }} className="mx-auto">
<div className="mx-auto">
<Img
style={{ maxWidth: '175px', maxHeight: '175px' }}
className="border-2 border-blue-transparent border-gradient-t-blue-dark"
fixed={data.placeholderImage.childImageSharp.fixed}
/>
Expand Down
8 changes: 6 additions & 2 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ const IndexPage: React.FC = () => (
<p>
My name is Mark Hagemann but I also commonly go by &quot;Haggy&quot; or
&quot;Haggyman&quot;. Currently based in Melbourne, working for{' '}
<a href="https://www.msts.com"> MSTS</a>. I am a software developer with a
focus on the web, and a curiosity for game development.{' '}
<a target="_blank" rel="noopener noreferrer" href="https://trevipay.com">
{' '}
TreviPay
</a>
. I am a software developer with a focus on the web, and a curiosity for
game development.{' '}
</p>
<br />{' '}
<p>
Expand Down
2 changes: 1 addition & 1 deletion src/portfolio/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const PortfolioIndex: React.FC<PortfolioProps> = props => {
is just as satisfying as making something pretty.
</p>
<Company
company="MSTS"
company="TreviPay"
role="Developer"
years="2019 - Present"
noPosts={true}
Expand Down
Binary file added static/images/myself-and-taito.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/images/profile.png
Binary file not shown.

0 comments on commit d7b2890

Please sign in to comment.