First Developer Blog Post
January 15, 2020
Welcome to my First ever Developer Blog!
All of the knowledge I have learned throughout this project has been from Dobyns-Bennett Highschool in the class ‘Game Programming & Logic II’
Throughout my time in this class I have learned how to edit cool things like this:
import React from "react"
import { useStaticQuery, graphql } from "gatsby"
import Image from "gatsby-image"
import { rhythm } from "../utils/typography"
const Bio = () => {
const data = useStaticQuery(graphql`
query BioQuery {
avatar: file(absolutePath: { regex: "/profile-pic.jpg/" }) {
childImageSharp {
fixed(width: 100, height: 70) {
...GatsbyImageSharpFixed
}
}
}
site {
siteMetadata {
author
}
}
}
`)