-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from alecspringel/feat/design-update
Feat/design update
- Loading branch information
Showing
110 changed files
with
18,439 additions
and
22,676 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 |
---|---|---|
|
@@ -103,4 +103,5 @@ dist | |
# TernJS port file | ||
.tern-port | ||
|
||
public/ | ||
public/ | ||
.DS_Store |
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 |
---|---|---|
@@ -1 +1 @@ | ||
16.13.0 | ||
18.12.0 |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ Portfolio and contact site for Alec Springel - [alecspringel.com](https://alecsp | |
|
||
Designed and created by Alec Springel: [email protected] | ||
|
||
![Hero section of alecspringel.com](docs/media/hero.png) | ||
![Hero section of alecspringel.com](docs/media/figma-design.png) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
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 |
---|---|---|
@@ -1,41 +1,63 @@ | ||
module.exports = { | ||
siteMetadata: { | ||
title: `Alec Springel`, | ||
description: `A full-stack engineer looking for creative solutions to everyday problems.`, | ||
url: "https://www.alecspringel.com", | ||
image: "/images/hero.jpg", | ||
author: `@alecspringel`, | ||
title: 'Alec Springel', | ||
description: 'Portfolio and client portal for software and web development services', | ||
url: 'https://alecspringel.com', | ||
image: '/meta-img.jpg', | ||
author: '@alecspringel', | ||
}, | ||
plugins: [ | ||
`gatsby-plugin-styled-components`, | ||
`gatsby-plugin-react-helmet`, | ||
'gatsby-plugin-styled-components', | ||
'gatsby-plugin-react-helmet', | ||
{ | ||
resolve: `gatsby-plugin-s3`, | ||
resolve: 'gatsby-source-filesystem', | ||
options: { | ||
bucketName: "alecspringel.com", | ||
name: 'images', | ||
path: `${__dirname}/src/images`, | ||
}, | ||
}, | ||
'gatsby-transformer-sharp', | ||
'gatsby-plugin-sharp', | ||
{ | ||
resolve: `gatsby-source-filesystem`, | ||
resolve: 'gatsby-plugin-manifest', | ||
options: { | ||
name: `images`, | ||
path: `${__dirname}/src/images`, | ||
name: 'Alec Springel', | ||
short_name: 'Alec Springel', | ||
description: 'Portfolio and client portal for software and web development services', | ||
start_url: '/', | ||
background_color: '#090B2B', | ||
theme_color: '#090B2B', | ||
display: 'browser', | ||
icon: 'src/images/manifest/512x512.png', // This path is relative to the root of the site. | ||
}, | ||
}, | ||
'gatsby-plugin-gatsby-cloud', | ||
{ | ||
resolve: 'gatsby-plugin-s3', | ||
options: { | ||
bucketName: process.env.DEPLOY_ENV === 'prod' ? 'alecspringel.com-v2' : 'alecspringel.com-v2-dev', | ||
}, | ||
}, | ||
`gatsby-transformer-sharp`, | ||
`gatsby-plugin-sharp`, | ||
{ | ||
resolve: `gatsby-plugin-manifest`, | ||
resolve: 'gatsby-plugin-google-gtag', | ||
options: { | ||
name: `Alec Springel`, | ||
short_name: `Alec Springel`, | ||
start_url: `/`, | ||
background_color: `#343434`, | ||
theme_color: `#343434`, | ||
display: `minimal-ui`, | ||
icon: `src/images/logo.png`, // This path is relative to the root of the site. | ||
// You can add multiple tracking ids and a pageview event will be fired for all of them. | ||
trackingIds: [ | ||
'G-2Q4G38S8CQ', // Google Analytics | ||
], | ||
// This object gets passed directly to the gtag config command | ||
// This config will be shared across all trackingIds | ||
gtagConfig: { | ||
optimize_id: 'OPT-NKZ8Z3W', | ||
anonymize_ip: false, | ||
cookie_expires: 0, | ||
}, | ||
// This object is used for configuration specific to this plugin | ||
pluginConfig: { | ||
// Puts tracking script in the head instead of the body | ||
head: true, | ||
}, | ||
}, | ||
}, | ||
`gatsby-plugin-gatsby-cloud`, | ||
], | ||
}; |
Oops, something went wrong.