mirror of
https://github.com/kremalicious/portfolio.git
synced 2025-01-11 21:35:31 +01:00
67 lines
1.1 KiB
JavaScript
67 lines
1.1 KiB
JavaScript
import { useStaticQuery, graphql } from 'gatsby'
|
|
|
|
const query = graphql`
|
|
query Resume {
|
|
contentJson {
|
|
basics {
|
|
name
|
|
label
|
|
picture {
|
|
childImageSharp {
|
|
fixed(width: 256, height: 256) {
|
|
...GatsbyImageSharpFixed_withWebp_noBase64
|
|
}
|
|
}
|
|
}
|
|
email
|
|
website
|
|
summary
|
|
profiles {
|
|
network
|
|
url
|
|
username
|
|
}
|
|
location {
|
|
city
|
|
countryCode
|
|
}
|
|
}
|
|
education {
|
|
institution
|
|
area
|
|
studyType
|
|
startDate
|
|
endDate
|
|
}
|
|
languages {
|
|
language
|
|
fluency
|
|
}
|
|
skills {
|
|
name
|
|
level
|
|
keywords
|
|
}
|
|
work {
|
|
company
|
|
position
|
|
website
|
|
startDate
|
|
endDate
|
|
summary
|
|
}
|
|
awards {
|
|
title
|
|
date
|
|
awarder
|
|
summary
|
|
}
|
|
}
|
|
}
|
|
`
|
|
|
|
export const useResume = () => {
|
|
const { contentJson } = useStaticQuery(query)
|
|
return contentJson
|
|
}
|