Skip to content

Commit

Permalink
Merge pull request #3 from alecspringel/feat/design-update
Browse files Browse the repository at this point in the history
Feat/design update
  • Loading branch information
alecspringel authored Jul 21, 2023
2 parents 1ce2563 + 51aae75 commit 73b4f6e
Show file tree
Hide file tree
Showing 110 changed files with 18,439 additions and 22,676 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,5 @@ dist
# TernJS port file
.tern-port

public/
public/
.DS_Store
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.13.0
18.12.0
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Binary file added 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 removed docs/media/hero.png
Binary file not shown.
68 changes: 45 additions & 23 deletions gatsby-config.js
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`,
],
};
Loading

0 comments on commit 73b4f6e

Please sign in to comment.