-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from spencer-rafada/spencer/projects
project section
- Loading branch information
Showing
13 changed files
with
161 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import React from 'react' | ||
import projectsData from '../data/PROJECTS' | ||
import Item from './Item' | ||
|
||
export default function FeaturedProjects() { | ||
console.log(projectsData) | ||
return ( | ||
<div className='displaySection__projects'> | ||
<h2>Featured Projects</h2> | ||
{projectsData.map((item) => { | ||
return <Item cardType={'proj'} data={item} /> | ||
})} | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import React from 'react' | ||
|
||
export default function Footer() { | ||
return ( | ||
<div className='displaySection__footer'> | ||
<p> | ||
This portfolio was created by yours truly, but heavily inspired by{' '} | ||
<a href='https://brittanychiang.com/'>Brittany Chiang</a> | ||
</p> | ||
</div> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
const projects = [ | ||
{ | ||
date: '2023', | ||
title: 'Arkad', | ||
description: | ||
'Full Stack Web App that guides user to grow their wealth and finances through smart goals, financial tracker, and surrounding yourself with like minded people.', | ||
madeAt: 'Personal Project', | ||
tools: [ | ||
'react', | ||
'TDD', | ||
'jest', | ||
'GitHub Actions', | ||
'NodeJS', | ||
'Express', | ||
'MongoDB', | ||
], | ||
link: 'https://arkad-4hz9.onrender.com/', | ||
image: '/src/assets/arkad_thumbnail.png', | ||
}, | ||
{ | ||
date: '2023', | ||
title: 'My Own Wedding Website', | ||
description: `Full Stack Web app for my wife and I's wedding. View details about our wedding, RSVP, contacting us, and sending us notes`, | ||
madeAt: 'Personal Project', | ||
tools: ['react', 'NodeJS', 'Express', 'MongoDB', 'SCSS', 'Trello'], | ||
link: 'https://hanaandspencer.onrender.com/', | ||
image: '/src/assets/weddingwebsite_thumbnail.png', | ||
}, | ||
{ | ||
date: '2022', | ||
title: `KoRa's Treats`, | ||
description: | ||
'Web App that features baking products that my wife has made. This web app utilizes Vanilla JavaScript and CSS', | ||
madeAt: 'BYU-I', | ||
tools: ['JavaScript', 'CSS'], | ||
link: 'https://spencer-rafada.github.io/kora-s-treats/', | ||
image: '/src/assets/korastreat_thumbnail.png', | ||
}, | ||
{ | ||
date: '2022', | ||
title: 'Math Ninja', | ||
description: | ||
'Single Page Application that gamifies mathematics into Fruit Ninja. I was part of a group when we created this app.', | ||
madeAt: 'BYU-I', | ||
tools: ['react', 'Firebase', 'Canvas', 'Trello'], | ||
link: '', | ||
image: '/src/assets/mathninja_thumbnail.png', | ||
}, | ||
{ | ||
date: '2023', | ||
title: 'Spruce Moose', | ||
description: | ||
'REST API application that allowed local nursery to have their own server for managing and storing plant.', | ||
madeAt: 'BYU-I', | ||
tools: ['REST', 'NodeJS', 'Express', 'MongoDB', 'Trello'], | ||
link: 'https://youtu.be/lFlTZcN_cKs', | ||
image: '/src/assets/spruce_thumbnail.png', | ||
}, | ||
] | ||
|
||
export default projects |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters