Skip to content

Commit

Permalink
fix stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrennan414 committed Nov 7, 2024
1 parent 677ac78 commit 4293af9
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 38 deletions.
2 changes: 1 addition & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ html {
}

#githubLogo:hover{
color: black;
color: white;
}

.firstHeader {
Expand Down
2 changes: 1 addition & 1 deletion src/components/Header.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function Header() {
return (
<div className="firstHeader">
<div className="headerText">
<h1>Fart BRENNAN</h1>
<h1>JOHN BRENNAN</h1>
<h4>fullstack developer</h4>
</div>
<div id="icons">
Expand Down
6 changes: 5 additions & 1 deletion src/components/Projects.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,11 @@ export default function Projects() {

{project.under_construction ? (
<h5 className={"ribbon"}>Under construction</h5>
): ""}
): ""}

{project.retired ? (
<h5 className={"ribbon"}>Retired</h5>
): ""}

<h2>{project.name}</h2>
<h3>{project.description}</h3>
Expand Down
50 changes: 18 additions & 32 deletions src/data/projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,6 @@ const projects = [
"youtube":"https://www.youtube.com/watch?v=qRyWRSH-Dkk",
"under_construction": false
},
{
"name": "WhereI'llBe ⛷",
"description": "Share your ski calendar with your friends, to carpool or get drinks on the mountain!",
"uses":["react","firebase", "redux"],
"link":"https://whereillbe.com/",
"github":"https://github.com/jbrennan414/where-ill-be",
"under_construction": true
},
{
"name": "Ski Scraper 🎿",
"description": "This was a passion project I worked on with a colleague after my ski pass began requiring reservations to ski. This bot scraped reservation sites and would send me a Telegram message if I had an available spot!",
Expand All @@ -25,15 +17,6 @@ const projects = [
"youtube":"https://youtu.be/4CnmTISvu3A",
"under_construction": false
},
{
"name": "CurrenSee 💶",
"description": "CurrenSee is a proof that I could successfully get something onto the Apple App Store, here is proof!",
"uses":["swift"],
"link":"https://apps.apple.com/us/app/currensee-exchange-rates/id1585448045?ign-mpt=uo%3D2",
"github":"https://github.com/jbrennan414/currensee",
"youtube":"https://www.youtube.com/watch?v=y9hC8f9dm_U",
"under_construction": false
},
{
"name": "WildRydes 🦄",
"description": "This was an AWS tutorial to learn the basics of a full stack app on AWS. If you need to book a unicorn reservation, this is the app for you!",
Expand All @@ -45,33 +28,36 @@ const projects = [
"name": "Coronavirus Tracker 🦠",
"description": "This is a first pass at a coronavirus tracker, using Wes Bos' code along on youtube. In the coming weeks I hope to add to this!",
"uses":["react"],
"link":"https://coronavirus-iota-topaz.now.sh/",
"link":"https://github.com/jbrennan414/coronavirus",
"github":"https://github.com/jbrennan414/coronavirus",
"under_construction": false
"under_construction": false,
"retired": true
},
{
"name": "FindMyFourteener 🗻",
"description": " Do you live in Denver and need to hike a 14'er? This is the site for you!",
"uses":["react"],
"link": "https://www.findmyfourteener.com/",
"github":"https://github.com/jbrennan414/findmyfourteener",
"under_construction": false
"under_construction": true
},
{
"name": "MovieDatabase 🎬 ",
"description": "This is LevelUpTutorial's into to react tutorial, it's a lot of fun!",
"uses":["react", "redux"],
"link": "https://johnbrennan-lumdb.netlify.com/",
"github":"https://github.com/jbrennan414/lumdb",
"under_construction": false
"name": "WhereI'llBe ⛷",
"description": "Share your ski calendar with your friends, to carpool or get drinks on the mountain!",
"uses":["react","firebase", "redux"],
"link":"https://whereillbe.com/",
"github":"https://github.com/jbrennan414/where-ill-be",
"retired": true
},
{
"name": "WeatherWardrobe ⛅️ ",
"description":"A wardrobe picker for me! Uses the openweathermap API to grab climate conditions, then translate that into a wardrobe for the day.",
"uses":["react"],
"link":"https://my-weather-wardrobe.netlify.com/",
"github": "https://github.com/jbrennan414/weather-wardrobe",
"under_construction": false
"name": "CurrenSee 💶",
"description": "CurrenSee is a proof that I could successfully get something onto the Apple App Store, here is proof!",
"uses":["swift"],
"link":"https://apps.apple.com/us/app/currensee-exchange-rates/id1585448045?ign-mpt=uo%3D2",
"github":"https://github.com/jbrennan414/currensee",
"youtube":"https://www.youtube.com/watch?v=y9hC8f9dm_U",
"under_construction": false,
"retired": true
},
];

Expand Down
5 changes: 2 additions & 3 deletions src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,10 @@

a {
font-weight: 500;
color: #646cff;
text-decoration: inherit;
}
a:hover {
color: #535bf2;
color: white;
}

body {
Expand Down Expand Up @@ -47,7 +46,7 @@ button {
transition: border-color 0.25s;
}
button:hover {
border-color: #646cff;
border-color: white;
}
button:focus,
button:focus-visible {
Expand Down

0 comments on commit 4293af9

Please sign in to comment.