├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .nvmrc ├── LICENSE ├── README.md ├── content ├── featured │ ├── HalcyonTheme │ │ ├── demo.png │ │ ├── halcyon.png │ │ └── index.md │ ├── SpotifyProfile │ │ ├── demo.png │ │ └── index.md │ └── SpotifyProfileV2 │ │ ├── course-card.png │ │ ├── demo.png │ │ └── index.md ├── jobs │ ├── Apple │ │ └── index.md │ ├── Mullen │ │ └── index.md │ ├── Scout │ │ └── index.md │ ├── Starry │ │ └── index.md │ └── Upstatement │ │ └── index.md ├── posts │ ├── clickable-cards │ │ └── index.md │ ├── dark-mode-toggle │ │ └── index.md │ ├── docker-compose-error │ │ └── index.md │ ├── markdown-playground │ │ ├── image.jpg │ │ └── index.md │ └── wordpress-publish-error │ │ ├── console-errors.png │ │ ├── draft-fail.png │ │ ├── index.md │ │ └── publish-error.png └── projects │ ├── AMFM.md │ ├── AlgoliaWordPressMediumPost.md │ ├── AppleMusicEmbedPlayer.md │ ├── Blistabloc.md │ ├── CourseSource.md │ ├── CrowdDJ.md │ ├── Devoted.md │ ├── EverytownIdealState.md │ ├── Flagship.md │ ├── Fontipsums.md │ ├── GoogleKeepClone.md │ ├── HBS.md │ ├── HalcyonTheme.md │ ├── HeadlessCMSMediumPost.md │ ├── Interventions.md │ ├── JetBlueHumanKinda.md │ ├── KoalaHealth.md │ ├── LonelyPlanetDBMS.md │ ├── MichelleWu.md │ ├── MomsDemandAction.md │ ├── MyNEURedesign.md │ ├── NUWITSite.md │ ├── NortheasternCSSH.md │ ├── OctoProfile.md │ ├── OneCardForAll.md │ ├── PhillySports.md │ ├── Pratt.md │ ├── ReactResume.md │ ├── Screentime.md │ ├── SpotifyProfile.md │ ├── SpotifyTopTracks2017.md │ ├── The19th.md │ ├── Threadable.md │ ├── TimeToHaveMoreFun.md │ ├── UpstatementDotCom.md │ ├── Vanderbilt.md │ ├── WeatherWidget.md │ ├── images │ ├── SpotifyProfile.png │ ├── blistabloc.png │ ├── google-keep-clone.png │ ├── halcyon-demo.png │ ├── halcyon.png │ └── v3-og.png │ ├── v1.md │ ├── v2.md │ └── v3.md ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── gatsby-ssr.js ├── package.json ├── prettier.config.js ├── src ├── components │ ├── email.js │ ├── footer.js │ ├── head.js │ ├── icons │ │ ├── appstore.js │ │ ├── bookmark.js │ │ ├── codepen.js │ │ ├── external.js │ │ ├── folder.js │ │ ├── fork.js │ │ ├── github.js │ │ ├── hex.js │ │ ├── icon.js │ │ ├── index.js │ │ ├── instagram.js │ │ ├── linkedin.js │ │ ├── loader.js │ │ ├── logo.js │ │ ├── playstore.js │ │ ├── star.js │ │ └── twitter.js │ ├── index.js │ ├── layout.js │ ├── loader.js │ ├── menu.js │ ├── nav.js │ ├── sections │ │ ├── about.js │ │ ├── contact.js │ │ ├── featured.js │ │ ├── hero.js │ │ ├── jobs.js │ │ └── projects.js │ ├── side.js │ └── social.js ├── config.js ├── fonts │ ├── Calibre │ │ ├── Calibre-Light.ttf │ │ ├── Calibre-Light.woff │ │ ├── Calibre-Light.woff2 │ │ ├── Calibre-LightItalic.ttf │ │ ├── Calibre-LightItalic.woff │ │ ├── Calibre-LightItalic.woff2 │ │ ├── Calibre-Medium.ttf │ │ ├── Calibre-Medium.woff │ │ ├── Calibre-Medium.woff2 │ │ ├── Calibre-MediumItalic.ttf │ │ ├── Calibre-MediumItalic.woff │ │ ├── Calibre-MediumItalic.woff2 │ │ ├── Calibre-Regular.ttf │ │ ├── Calibre-Regular.woff │ │ ├── Calibre-Regular.woff2 │ │ ├── Calibre-RegularItalic.ttf │ │ ├── Calibre-RegularItalic.woff │ │ ├── Calibre-RegularItalic.woff2 │ │ ├── Calibre-Semibold.ttf │ │ ├── Calibre-Semibold.woff │ │ ├── Calibre-Semibold.woff2 │ │ ├── Calibre-SemiboldItalic.ttf │ │ ├── Calibre-SemiboldItalic.woff │ │ └── Calibre-SemiboldItalic.woff2 │ └── SFMono │ │ ├── SFMono-Medium.ttf │ │ ├── SFMono-Medium.woff │ │ ├── SFMono-Medium.woff2 │ │ ├── SFMono-MediumItalic.ttf │ │ ├── SFMono-MediumItalic.woff │ │ ├── SFMono-MediumItalic.woff2 │ │ ├── SFMono-Regular.ttf │ │ ├── SFMono-Regular.woff │ │ ├── SFMono-Regular.woff2 │ │ ├── SFMono-RegularItalic.ttf │ │ ├── SFMono-RegularItalic.woff │ │ ├── SFMono-RegularItalic.woff2 │ │ ├── SFMono-Semibold.ttf │ │ ├── SFMono-Semibold.woff │ │ ├── SFMono-Semibold.woff2 │ │ ├── SFMono-SemiboldItalic.ttf │ │ ├── SFMono-SemiboldItalic.woff │ │ └── SFMono-SemiboldItalic.woff2 ├── hooks │ ├── index.js │ ├── useOnClickOutside.js │ ├── usePrefersReducedMotion.js │ └── useScrollDirection.js ├── images │ ├── demo.png │ ├── favicons │ │ ├── android-icon-144x144.png │ │ ├── android-icon-192x192.png │ │ ├── android-icon-36x36.png │ │ ├── android-icon-48x48.png │ │ ├── android-icon-72x72.png │ │ ├── android-icon-96x96.png │ │ ├── apple-icon-114x114.png │ │ ├── apple-icon-120x120.png │ │ ├── apple-icon-144x144.png │ │ ├── apple-icon-152x152.png │ │ ├── apple-icon-180x180.png │ │ ├── apple-icon-57x57.png │ │ ├── apple-icon-60x60.png │ │ ├── apple-icon-72x72.png │ │ ├── apple-icon-76x76.png │ │ ├── apple-icon-precomposed.png │ │ ├── apple-icon.png │ │ ├── favicon-16x16.png │ │ ├── favicon-32x32.png │ │ ├── favicon-96x96.png │ │ ├── favicon.ico │ │ ├── ms-icon-144x144.png │ │ ├── ms-icon-150x150.png │ │ ├── ms-icon-310x310.png │ │ └── ms-icon-70x70.png │ ├── logo.png │ ├── me.jpg │ └── ups-shot.jpg ├── pages │ ├── 404.js │ ├── archive.js │ ├── index.js │ └── pensieve │ │ ├── index.js │ │ └── tags.js ├── styles │ ├── GlobalStyle.js │ ├── PrismStyles.js │ ├── TransitionStyles.js │ ├── fonts.js │ ├── index.js │ ├── mixins.js │ ├── theme.js │ └── variables.js ├── templates │ ├── post.js │ └── tag.js └── utils │ ├── index.js │ └── sr.js ├── static ├── og.png ├── og@2x.png ├── resume.pdf └── slides │ └── intro-to-webdev-workshop.pdf └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run lint-staged 5 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14.16.0 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/README.md -------------------------------------------------------------------------------- /content/featured/HalcyonTheme/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/featured/HalcyonTheme/demo.png -------------------------------------------------------------------------------- /content/featured/HalcyonTheme/halcyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/featured/HalcyonTheme/halcyon.png -------------------------------------------------------------------------------- /content/featured/HalcyonTheme/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/featured/HalcyonTheme/index.md -------------------------------------------------------------------------------- /content/featured/SpotifyProfile/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/featured/SpotifyProfile/demo.png -------------------------------------------------------------------------------- /content/featured/SpotifyProfile/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/featured/SpotifyProfile/index.md -------------------------------------------------------------------------------- /content/featured/SpotifyProfileV2/course-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/featured/SpotifyProfileV2/course-card.png -------------------------------------------------------------------------------- /content/featured/SpotifyProfileV2/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/featured/SpotifyProfileV2/demo.png -------------------------------------------------------------------------------- /content/featured/SpotifyProfileV2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/featured/SpotifyProfileV2/index.md -------------------------------------------------------------------------------- /content/jobs/Apple/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/jobs/Apple/index.md -------------------------------------------------------------------------------- /content/jobs/Mullen/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/jobs/Mullen/index.md -------------------------------------------------------------------------------- /content/jobs/Scout/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/jobs/Scout/index.md -------------------------------------------------------------------------------- /content/jobs/Starry/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/jobs/Starry/index.md -------------------------------------------------------------------------------- /content/jobs/Upstatement/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/jobs/Upstatement/index.md -------------------------------------------------------------------------------- /content/posts/clickable-cards/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/clickable-cards/index.md -------------------------------------------------------------------------------- /content/posts/dark-mode-toggle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/dark-mode-toggle/index.md -------------------------------------------------------------------------------- /content/posts/docker-compose-error/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/docker-compose-error/index.md -------------------------------------------------------------------------------- /content/posts/markdown-playground/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/markdown-playground/image.jpg -------------------------------------------------------------------------------- /content/posts/markdown-playground/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/markdown-playground/index.md -------------------------------------------------------------------------------- /content/posts/wordpress-publish-error/console-errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/wordpress-publish-error/console-errors.png -------------------------------------------------------------------------------- /content/posts/wordpress-publish-error/draft-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/wordpress-publish-error/draft-fail.png -------------------------------------------------------------------------------- /content/posts/wordpress-publish-error/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/wordpress-publish-error/index.md -------------------------------------------------------------------------------- /content/posts/wordpress-publish-error/publish-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/posts/wordpress-publish-error/publish-error.png -------------------------------------------------------------------------------- /content/projects/AMFM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/AMFM.md -------------------------------------------------------------------------------- /content/projects/AlgoliaWordPressMediumPost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/AlgoliaWordPressMediumPost.md -------------------------------------------------------------------------------- /content/projects/AppleMusicEmbedPlayer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/AppleMusicEmbedPlayer.md -------------------------------------------------------------------------------- /content/projects/Blistabloc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Blistabloc.md -------------------------------------------------------------------------------- /content/projects/CourseSource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/CourseSource.md -------------------------------------------------------------------------------- /content/projects/CrowdDJ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/CrowdDJ.md -------------------------------------------------------------------------------- /content/projects/Devoted.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Devoted.md -------------------------------------------------------------------------------- /content/projects/EverytownIdealState.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/EverytownIdealState.md -------------------------------------------------------------------------------- /content/projects/Flagship.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Flagship.md -------------------------------------------------------------------------------- /content/projects/Fontipsums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Fontipsums.md -------------------------------------------------------------------------------- /content/projects/GoogleKeepClone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/GoogleKeepClone.md -------------------------------------------------------------------------------- /content/projects/HBS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/HBS.md -------------------------------------------------------------------------------- /content/projects/HalcyonTheme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/HalcyonTheme.md -------------------------------------------------------------------------------- /content/projects/HeadlessCMSMediumPost.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/HeadlessCMSMediumPost.md -------------------------------------------------------------------------------- /content/projects/Interventions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Interventions.md -------------------------------------------------------------------------------- /content/projects/JetBlueHumanKinda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/JetBlueHumanKinda.md -------------------------------------------------------------------------------- /content/projects/KoalaHealth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/KoalaHealth.md -------------------------------------------------------------------------------- /content/projects/LonelyPlanetDBMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/LonelyPlanetDBMS.md -------------------------------------------------------------------------------- /content/projects/MichelleWu.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/MichelleWu.md -------------------------------------------------------------------------------- /content/projects/MomsDemandAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/MomsDemandAction.md -------------------------------------------------------------------------------- /content/projects/MyNEURedesign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/MyNEURedesign.md -------------------------------------------------------------------------------- /content/projects/NUWITSite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/NUWITSite.md -------------------------------------------------------------------------------- /content/projects/NortheasternCSSH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/NortheasternCSSH.md -------------------------------------------------------------------------------- /content/projects/OctoProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/OctoProfile.md -------------------------------------------------------------------------------- /content/projects/OneCardForAll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/OneCardForAll.md -------------------------------------------------------------------------------- /content/projects/PhillySports.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/PhillySports.md -------------------------------------------------------------------------------- /content/projects/Pratt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Pratt.md -------------------------------------------------------------------------------- /content/projects/ReactResume.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/ReactResume.md -------------------------------------------------------------------------------- /content/projects/Screentime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Screentime.md -------------------------------------------------------------------------------- /content/projects/SpotifyProfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/SpotifyProfile.md -------------------------------------------------------------------------------- /content/projects/SpotifyTopTracks2017.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/SpotifyTopTracks2017.md -------------------------------------------------------------------------------- /content/projects/The19th.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/The19th.md -------------------------------------------------------------------------------- /content/projects/Threadable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Threadable.md -------------------------------------------------------------------------------- /content/projects/TimeToHaveMoreFun.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/TimeToHaveMoreFun.md -------------------------------------------------------------------------------- /content/projects/UpstatementDotCom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/UpstatementDotCom.md -------------------------------------------------------------------------------- /content/projects/Vanderbilt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/Vanderbilt.md -------------------------------------------------------------------------------- /content/projects/WeatherWidget.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/WeatherWidget.md -------------------------------------------------------------------------------- /content/projects/images/SpotifyProfile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/images/SpotifyProfile.png -------------------------------------------------------------------------------- /content/projects/images/blistabloc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/images/blistabloc.png -------------------------------------------------------------------------------- /content/projects/images/google-keep-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/images/google-keep-clone.png -------------------------------------------------------------------------------- /content/projects/images/halcyon-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/images/halcyon-demo.png -------------------------------------------------------------------------------- /content/projects/images/halcyon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/images/halcyon.png -------------------------------------------------------------------------------- /content/projects/images/v3-og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/images/v3-og.png -------------------------------------------------------------------------------- /content/projects/v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/v1.md -------------------------------------------------------------------------------- /content/projects/v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/v2.md -------------------------------------------------------------------------------- /content/projects/v3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/content/projects/v3.md -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /gatsby-ssr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/gatsby-ssr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@upstatement/prettier-config'); 2 | -------------------------------------------------------------------------------- /src/components/email.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/email.js -------------------------------------------------------------------------------- /src/components/footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/footer.js -------------------------------------------------------------------------------- /src/components/head.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/head.js -------------------------------------------------------------------------------- /src/components/icons/appstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/appstore.js -------------------------------------------------------------------------------- /src/components/icons/bookmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/bookmark.js -------------------------------------------------------------------------------- /src/components/icons/codepen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/codepen.js -------------------------------------------------------------------------------- /src/components/icons/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/external.js -------------------------------------------------------------------------------- /src/components/icons/folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/folder.js -------------------------------------------------------------------------------- /src/components/icons/fork.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/fork.js -------------------------------------------------------------------------------- /src/components/icons/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/github.js -------------------------------------------------------------------------------- /src/components/icons/hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/hex.js -------------------------------------------------------------------------------- /src/components/icons/icon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/icon.js -------------------------------------------------------------------------------- /src/components/icons/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/index.js -------------------------------------------------------------------------------- /src/components/icons/instagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/instagram.js -------------------------------------------------------------------------------- /src/components/icons/linkedin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/linkedin.js -------------------------------------------------------------------------------- /src/components/icons/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/loader.js -------------------------------------------------------------------------------- /src/components/icons/logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/logo.js -------------------------------------------------------------------------------- /src/components/icons/playstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/playstore.js -------------------------------------------------------------------------------- /src/components/icons/star.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/star.js -------------------------------------------------------------------------------- /src/components/icons/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/icons/twitter.js -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/components/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/layout.js -------------------------------------------------------------------------------- /src/components/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/loader.js -------------------------------------------------------------------------------- /src/components/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/menu.js -------------------------------------------------------------------------------- /src/components/nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/nav.js -------------------------------------------------------------------------------- /src/components/sections/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/sections/about.js -------------------------------------------------------------------------------- /src/components/sections/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/sections/contact.js -------------------------------------------------------------------------------- /src/components/sections/featured.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/sections/featured.js -------------------------------------------------------------------------------- /src/components/sections/hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/sections/hero.js -------------------------------------------------------------------------------- /src/components/sections/jobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/sections/jobs.js -------------------------------------------------------------------------------- /src/components/sections/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/sections/projects.js -------------------------------------------------------------------------------- /src/components/side.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/side.js -------------------------------------------------------------------------------- /src/components/social.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/components/social.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/config.js -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Light.ttf -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Light.woff -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Light.woff2 -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-LightItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-LightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-LightItalic.woff -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-LightItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-LightItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Medium.ttf -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Medium.woff -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Medium.woff2 -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-MediumItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-MediumItalic.woff -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Regular.woff -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-RegularItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-RegularItalic.woff -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-RegularItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Semibold.ttf -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Semibold.woff -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-Semibold.woff2 -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-SemiboldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-SemiboldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-SemiboldItalic.woff -------------------------------------------------------------------------------- /src/fonts/Calibre/Calibre-SemiboldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/Calibre/Calibre-SemiboldItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Medium.ttf -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Medium.woff -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Medium.woff2 -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-MediumItalic.ttf -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-MediumItalic.woff -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-MediumItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Regular.ttf -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Regular.woff -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Regular.woff2 -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-RegularItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-RegularItalic.ttf -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-RegularItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-RegularItalic.woff -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-RegularItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-RegularItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Semibold.ttf -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Semibold.woff -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-Semibold.woff2 -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-SemiboldItalic.ttf -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-SemiboldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-SemiboldItalic.woff -------------------------------------------------------------------------------- /src/fonts/SFMono/SFMono-SemiboldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/fonts/SFMono/SFMono-SemiboldItalic.woff2 -------------------------------------------------------------------------------- /src/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/hooks/index.js -------------------------------------------------------------------------------- /src/hooks/useOnClickOutside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/hooks/useOnClickOutside.js -------------------------------------------------------------------------------- /src/hooks/usePrefersReducedMotion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/hooks/usePrefersReducedMotion.js -------------------------------------------------------------------------------- /src/hooks/useScrollDirection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/hooks/useScrollDirection.js -------------------------------------------------------------------------------- /src/images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/demo.png -------------------------------------------------------------------------------- /src/images/favicons/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/android-icon-144x144.png -------------------------------------------------------------------------------- /src/images/favicons/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/android-icon-192x192.png -------------------------------------------------------------------------------- /src/images/favicons/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/android-icon-36x36.png -------------------------------------------------------------------------------- /src/images/favicons/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/android-icon-48x48.png -------------------------------------------------------------------------------- /src/images/favicons/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/android-icon-72x72.png -------------------------------------------------------------------------------- /src/images/favicons/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/android-icon-96x96.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-114x114.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-120x120.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-144x144.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-152x152.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-180x180.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-57x57.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-60x60.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-72x72.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-76x76.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon-precomposed.png -------------------------------------------------------------------------------- /src/images/favicons/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/apple-icon.png -------------------------------------------------------------------------------- /src/images/favicons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/favicon-16x16.png -------------------------------------------------------------------------------- /src/images/favicons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/favicon-32x32.png -------------------------------------------------------------------------------- /src/images/favicons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/favicon-96x96.png -------------------------------------------------------------------------------- /src/images/favicons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/favicon.ico -------------------------------------------------------------------------------- /src/images/favicons/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/ms-icon-144x144.png -------------------------------------------------------------------------------- /src/images/favicons/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/ms-icon-150x150.png -------------------------------------------------------------------------------- /src/images/favicons/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/ms-icon-310x310.png -------------------------------------------------------------------------------- /src/images/favicons/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/favicons/ms-icon-70x70.png -------------------------------------------------------------------------------- /src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/logo.png -------------------------------------------------------------------------------- /src/images/me.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/me.jpg -------------------------------------------------------------------------------- /src/images/ups-shot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/images/ups-shot.jpg -------------------------------------------------------------------------------- /src/pages/404.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/pages/404.js -------------------------------------------------------------------------------- /src/pages/archive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/pages/archive.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/pensieve/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/pages/pensieve/index.js -------------------------------------------------------------------------------- /src/pages/pensieve/tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/pages/pensieve/tags.js -------------------------------------------------------------------------------- /src/styles/GlobalStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/styles/GlobalStyle.js -------------------------------------------------------------------------------- /src/styles/PrismStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/styles/PrismStyles.js -------------------------------------------------------------------------------- /src/styles/TransitionStyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/styles/TransitionStyles.js -------------------------------------------------------------------------------- /src/styles/fonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/styles/fonts.js -------------------------------------------------------------------------------- /src/styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/styles/index.js -------------------------------------------------------------------------------- /src/styles/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/styles/mixins.js -------------------------------------------------------------------------------- /src/styles/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/styles/theme.js -------------------------------------------------------------------------------- /src/styles/variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/styles/variables.js -------------------------------------------------------------------------------- /src/templates/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/templates/post.js -------------------------------------------------------------------------------- /src/templates/tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/templates/tag.js -------------------------------------------------------------------------------- /src/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/utils/index.js -------------------------------------------------------------------------------- /src/utils/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/src/utils/sr.js -------------------------------------------------------------------------------- /static/og.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/static/og.png -------------------------------------------------------------------------------- /static/og@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/static/og@2x.png -------------------------------------------------------------------------------- /static/resume.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/static/resume.pdf -------------------------------------------------------------------------------- /static/slides/intro-to-webdev-workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/static/slides/intro-to-webdev-workshop.pdf -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bchiang7/v4/HEAD/yarn.lock --------------------------------------------------------------------------------