Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
72 commits
Select commit Hold shift + click to select a range
c036cd0
Reinitialize project with CRA
forkball Mar 30, 2021
8cd8ebc
Add LandingPage headers
forkball Apr 18, 2021
3a9dc26
Update landing panel styling and content
forkball Oct 16, 2021
2aeff4f
Add mixins and typography
forkball Dec 15, 2021
c7f92da
Update .eslintrc.json
forkball Jan 3, 2022
cb60818
Add body to landing panel
forkball Jan 3, 2022
93c6673
Merge branch 'update' of https://github.com/ForkBombGIT/forkbombgit.g…
forkball Jan 3, 2022
14c8a63
Remove unused test
forkball Jan 3, 2022
4413825
Remove incomplete experience section
forkball Jan 3, 2022
c4da4ff
Update landing styles
forkball Jan 20, 2022
5abf785
Add clickout logic on dropdown
forkball Jan 24, 2022
8cf8d6d
Add box shadow to landing section
forkball Apr 17, 2022
6ff2914
Restructure landing section
forkball Apr 19, 2022
4535329
Add initial iteration of experience section
forkball Apr 19, 2022
c71172d
Update Profile image
forkball Sep 28, 2022
ee6e3e3
Restyle landing panel
forkball Oct 11, 2022
c574e52
Update desktop sizing
forkball Oct 11, 2022
391b8f1
Update layout
forkball Oct 19, 2022
4bcd007
Merge branch 'master' into update
forkball Nov 14, 2022
5a27084
Initial HandHeld concept
forkball Nov 14, 2022
f745a42
Add temporary mobile placeholder
forkball Nov 14, 2022
14c5204
Add min-height to device
forkball Nov 14, 2022
c0e24fd
Add max-height
forkball Nov 14, 2022
305c088
Add page title
forkball Nov 21, 2022
5a680f0
Update favicon
forkball Nov 21, 2022
7018030
Add background to h1
forkball Nov 21, 2022
089956b
Update title positioning
forkball Nov 21, 2022
a87f002
Add directional input controls
forkball Nov 28, 2022
ad208f3
Add smaller, tablet-like screen width support
forkball Dec 1, 2022
4678aaa
Implement initial mobile support
forkball Dec 3, 2022
87b0915
Update mobile responsiveness
forkball Dec 6, 2022
b6eb959
Update button positioning
forkball Dec 12, 2022
7e41bd9
Reposition mobile heading
forkball Dec 12, 2022
e5b0607
Add smooth panel scrolling
forkball Dec 12, 2022
45e57c7
Update mobile paddings
forkball Dec 12, 2022
73fcfc9
Update auto-margin on input
forkball Dec 12, 2022
ea0743b
Add auto-margin to title
forkball Dec 12, 2022
09bf260
Update Input bottom margin
forkball Dec 12, 2022
35fd486
Add initial implementation of horizontal handheld
forkball Dec 20, 2022
b79e4d1
Remove H1
forkball Dec 20, 2022
5bfc81a
Update margins and padding on horizontal device
forkball Dec 21, 2022
741e79e
Update palette and control ui
forkball Dec 24, 2022
9166b1f
Resolve linting error
forkball Dec 24, 2022
60e1255
Update metadata & conditional direction rendering
forkball Dec 24, 2022
682e31d
Prevent direction prompts from showing if there is no scroll room
forkball Dec 24, 2022
324c092
Update list styling
forkball Dec 24, 2022
82120bc
Implement socials panel
forkball Dec 26, 2022
b973083
Reset menu state
forkball Dec 26, 2022
688ecd9
Add input interactivity to social panel
forkball Dec 26, 2022
7f6a441
Update bio
forkball Dec 27, 2022
30d7fef
Update bio
forkball Dec 27, 2022
f5ba1ea
Increase space between bio paragraphs
forkball Dec 27, 2022
41b5496
Update metadata
forkball Dec 27, 2022
0205afe
Update metadata
forkball Dec 27, 2022
da20599
Fix scroll amount on mobile
forkball Dec 27, 2022
bf22522
Update bio copy
forkball Dec 28, 2022
61a37d3
Add particles back to tablet and desktop views
forkball Dec 29, 2022
0b10b50
Update social links
forkball Dec 31, 2022
f650e2a
Apply sizing optimizations
forkball Mar 14, 2023
8267017
Fix button shadow mediapoints
forkball Mar 14, 2023
d033bc0
Fix padding on social panel in mobile views
forkball Mar 14, 2023
4dc4b16
Update mobile scroll amount
forkball Mar 15, 2023
cfc809b
Update domain name
forkball Nov 25, 2023
a384f5c
Update scroll behaviour
forkball Dec 25, 2023
79287a4
Remove top content padding
forkball Dec 25, 2023
92c6854
Switch to 100% instead of 100vh
forkball Dec 25, 2023
337571a
Add top margin to Social
forkball Dec 25, 2023
1ebceda
Update BG colour
forkball Mar 17, 2024
14a8e2f
Mirror select button as start button
forkball May 3, 2024
c1182f9
Update scroll speed
forkball Oct 28, 2024
745dc44
Fix scrolling update to better support mobile
forkball Oct 28, 2024
f4329da
Update bluesky url
forkball Nov 20, 2024
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
26 changes: 26 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"extends": [
"airbnb",
"plugin:prettier/recommended"
],
"env": {
"browser": true
},
"plugins": [
"prettier"
],
"rules": {
"prettier/prettier": [
"error"
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
]
}
}
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# production
/build
/src/styles/tailwind-index.scss

# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"endOfLine": "auto"
}
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
erosdipede.ca
70 changes: 70 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# Getting Started with Create React App

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

## Available Scripts

In the project directory, you can run:

### `yarn start`

Runs the app in the development mode.\
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.

The page will reload if you make edits.\
You will also see any lint errors in the console.

### `yarn test`

Launches the test runner in the interactive watch mode.\
See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.

### `yarn build`

Builds the app for production to the `build` folder.\
It correctly bundles React in production mode and optimizes the build for the best performance.

The build is minified and the filenames include the hashes.\
Your app is ready to be deployed!

See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.

### `yarn eject`

**Note: this is a one-way operation. Once you `eject`, you can’t go back!**

If you aren’t satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.

Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you’re on your own.

You don’t have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn’t feel obligated to use this feature. However we understand that this tool wouldn’t be useful if you couldn’t customize it when you are ready for it.

## Learn More

You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).

To learn React, check out the [React documentation](https://reactjs.org/).

### Code Splitting

This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)

### Analyzing the Bundle Size

This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)

### Making a Progressive Web App

This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)

### Advanced Configuration

This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)

### Deployment

This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)

### `yarn build` fails to minify

This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
Binary file removed assets/Chaos.exe
Binary file not shown.
Binary file removed assets/Endless.exe
Binary file not shown.
Binary file removed assets/ForkBombProfile.png
Binary file not shown.
Binary file removed assets/UFO_Mayhem.exe
Binary file not shown.
382 changes: 0 additions & 382 deletions index.html

This file was deleted.

57 changes: 57 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
{
"name": "forkbombgit.github.io",
"version": "0.1.0",
"private": true,
"dependencies": {
"postcss-import": "^16.1.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-particles": "^2.3.3",
"react-scripts": "5.0.1",
"sass": "^1.55.0",
"tsparticles": "^2.3.4"
},
"scripts": {
"start": "npm run watch:css && react-scripts start",
"build": "npm run watch:css && react-scripts build",
"lint": "eslint ./src/*.js",
"test": "react-scripts test",
"eject": "react-scripts eject",
"watch:css": "postcss src/styles/tailwind.scss -o src/styles/tailwind-index.scss"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.4.13",
"eslint": "^8.26.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": "4.6.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"prettier": "2.2.1",
"tailwindcss": "^2.0.4"
}
}
11 changes: 11 additions & 0 deletions postcss.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* eslint-disable global-require */
/* eslint-disable import/no-extraneous-dependencies */
const tailwindcss = require('tailwindcss');

module.exports = {
plugins: [
require('postcss-import'),
tailwindcss('./src/tailwind.config.js'),
require('autoprefixer'),
],
};
Binary file added public/favicon.ico
Binary file not shown.
43 changes: 43 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="Personal website for Eros Di Pede; fullstack developer at Else Labs, and aspiring game dev."
/>
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Only files inside the `public` folder can be referenced from the HTML.

Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>Eros Di Pede / Personal Site</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<!--
This HTML file is a template.
If you open it directly in the browser, you will see an empty page.

You can add webfonts, meta tags, or analytics to this file.
The build step will place the bundled scripts into the <body> tag.

To begin the development, run `npm start` or `yarn start`.
To create a production bundle, use `npm run build` or `yarn build`.
-->
</body>
</html>
15 changes: 15 additions & 0 deletions public/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"short_name": "Eros Di Pede",
"name": "Eros Di Pede Personal Website",
"icons": [
{
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
}
],
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"
}
3 changes: 3 additions & 0 deletions public/robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# https://www.robotstxt.org/robotstxt.html
User-agent: *
Disallow:
49 changes: 0 additions & 49 deletions scripts/main.js

This file was deleted.

12 changes: 12 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import React from 'react';
import { LandingPage } from './pages';

function App() {
return (
<div className="App">
<LandingPage />
</div>
);
}

export default App;
Binary file added src/assets/fonts/Arcade.ttf
Binary file not shown.
Binary file added src/assets/fonts/GameBoy.ttf
Binary file not shown.
Binary file added src/assets/fonts/Pixels.ttf
Binary file not shown.
Binary file added src/assets/fonts/Pkmn.ttf
Binary file not shown.
Binary file added src/assets/landing-image.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 added src/assets/me.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 added src/assets/work.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading