Skip to content

Commit

Permalink
Simplify things
Browse files Browse the repository at this point in the history
  • Loading branch information
xHayden committed Oct 8, 2024
1 parent 9e148bf commit 52cadb4
Show file tree
Hide file tree
Showing 10 changed files with 11,666 additions and 46 deletions.
6 changes: 3 additions & 3 deletions blog/pages/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ tags:
- page
o: 2
description: I'm Hayden Carpenter. I'm an undergraduate student at The Georgia Institute of Technology in Atlanta, Georgia...
date: 2023-07-22
date: 2024-10-08
slug: about
canonical: https://hayden.gg/blog/about/
---

{% headers "About", ""%}

I'm Hayden Carpenter. I'm an undergraduate student at The Georgia Institute of Technology in Atlanta, Georgia.
I'm pursuing a Bachelor's degree in Computer Science with a focus on AI and Media and minor in Psychology.
I'm pursuing a Bachelor's degree in Computer Science with a focus on Computer Systems Architecture and Cybersecurity. I also have a minor in Psychology.

I'm also a Senior Developer at [Bits Of Good](https://bitsofgood.org), a Hack4Impact Chapter at Georgia Tech, where I work on app development for nonprofits. One other cool thing I do is help run Fantasy Stork Club where we bet on stork migration like you would Fantasy Football.
I'm also an Engineer Manager at [Bits Of Good](https://bitsofgood.org), a Hack4Impact Chapter at Georgia Tech, where I work on app development for non-profits. One other cool thing I do is help run Fantasy Stork Club where we bet on stork migration like you would Fantasy Football.

Feel free to reach out!
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
},
"dependencies": {
"@heroicons/react": "^2.0.13",
"@react-spring/three": "^9.7.5",
"@react-three/drei": "^9.114.2",
"@tinacms/cli": "^1.5.26",
"@types/three": "^0.146.0",
"animejs": "^3.2.1",
Expand All @@ -26,6 +28,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-three-fiber": "^6.0.13",
"three": "^0.147.0",
"tinacms": "^1.5.17"
},
Expand Down
60 changes: 60 additions & 0 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,68 @@
box-shadow: inset 0px -80px 150px 40px black;
}

body {
font-family: 'Nunito Sans', sans-serif;
}

h2 {
font-size: 1.10em;
font-weight: 600;
/* border-bottom: 2px solid rgb(251 191 36); */
padding-bottom: 0px;
margin-bottom: 8px;
line-height: 1em;
width: max-content;
}

a {
color: rgb(251 191 36);
font-weight: 600;
}


body {
font-size: 16px;
}

@media (max-width: 768px) {
body {
font-size: 14px;
}
}

@media (max-width: 480px) {
body {
font-size: 12px;
}
}


@media screen and (min-width: 1280) {
.textSlightlyLarger {
font-size: 2.5rem;
}
}

.list-disc-fix li {
list-style-type: none;
}

.list-disc-fix ul {
padding-left: 1.5em;
}

.list-disc-fix ul ul {
padding-left: 2em;
}

.list-disc-fix ul ul ul {
padding-left: 2.5em;
}

.list-disc-fix li:before {
color: rgb(251 191 36);
float: left;
width: 1em;
content: '\2022';
}
Loading

0 comments on commit 52cadb4

Please sign in to comment.