Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"gatsby-transformer-sharp": "^2.2.3",
"gh-pages": "^3.1.0",
"hover.css": "^2.3.2",
"lodash": "4.17.14",
"lodash": "4.17.19",
"node-sass": "^4.12.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
Expand Down
5 changes: 1 addition & 4 deletions src/components/book-review/book-review-entry.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import React from "react";
import AOS from "aos";

import FluidImage from "../utilities/fluid-image";
import Modal from "./modal";
import Tag from "./tag";

import "./styles/book-review-entry.scss";

AOS.init();

class BookReviewEntry extends React.Component {
constructor(props) {
super(props);
Expand All @@ -31,7 +28,7 @@ class BookReviewEntry extends React.Component {
isOpen={this.state.detailsOpen}
closeModal={this._closeDetails}
/>
<div className="box" onClick={this._openDetails} data-aos="fade-up">
<div className="box" onClick={this._openDetails}>
<article className="media">
<div className="media-content">
<div className="columns">
Expand Down
5 changes: 1 addition & 4 deletions src/pages/blog.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from "react";
import AOS from "Aos";
import { Link, graphql } from "gatsby";

import Head from "../components/head";
Expand All @@ -8,8 +7,6 @@ import Layout from "../components/layout";
import "../styles.scss";
import "./styles/blog.scss";

AOS.init();

const Blog = ({ data }) => {
return (
<Layout>
Expand All @@ -21,7 +18,7 @@ const Blog = ({ data }) => {
<section className="section">
<section className="hero">
{data.allMarkdownRemark.edges.map(({ node }) => (
<section key={node.id} className="hero-body" data-aos="fade-up">
<section key={node.id} className="hero-body">
<h3>
<Link to={node.fields.slug}>{node.frontmatter.title}</Link>{" "}
<span>— {node.frontmatter.date}</span>
Expand Down
18 changes: 5 additions & 13 deletions src/pages/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import React from "react";
import AOS from "Aos";
import { IconContext } from "react-icons";
import { BsCodeSlash, BsMusicNoteBeamed } from "react-icons/bs";
import { BiRun } from "react-icons/bi";
Expand All @@ -9,11 +8,8 @@ import Layout from "../components/layout";

import "../styles.scss";
import "./styles/index.scss";
import "aos/dist/aos.css";
import FluidImage from "../components/utilities/fluid-image";

AOS.init();

const IndexPage = () => (
<Layout>
<div className="index-wrapper">
Expand All @@ -25,7 +21,7 @@ const IndexPage = () => (
<FluidImage fileName="headshot.jpg" />
</div>
</div>
<div className="column" data-aos="fade-up">
<div className="column">
<p>
Hi! I'm <span className="name">Ben</span>, a software developer
originally from Phoenix, AZ. I have been living in Los Angeles
Expand All @@ -46,30 +42,26 @@ const IndexPage = () => (
</div>
</div>
</section>
<section
className="section index-section"
style={{ paddingTop: "25px" }}
data-aos="fade-up"
>
<section className="section index-section" style={{ paddingTop: "25px" }}>
<h1 className="is-centered">Some of my favorite things...</h1>
<div className="columns" style={{ paddingTop: "25px" }}>
<div className="column" data-aos="fade-up">
<div className="column">
<h2>Coding</h2>
<IconContext.Provider
value={{ className: "react-icons center-horizontal" }}
>
<BsCodeSlash />
</IconContext.Provider>
</div>
<div className="column" data-aos="fade-up">
<div className="column">
<h2>Running</h2>
<IconContext.Provider
value={{ className: "react-icons center-horizontal" }}
>
<BiRun />
</IconContext.Provider>
</div>
<div className="column" data-aos="fade-up">
<div className="column">
<h2>Music Production</h2>
<IconContext.Provider
value={{ className: "react-icons center-horizontal" }}
Expand Down
15 changes: 0 additions & 15 deletions src/pages/portfolio.js

This file was deleted.

Loading