-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject-data.js
More file actions
41 lines (34 loc) · 2.2 KB
/
project-data.js
File metadata and controls
41 lines (34 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const project1 = {
id: 1,
name: 'Get [F]it Done',
img: 'public/images/GetFitDone.png',
description: 'Chrome extension using React.js and Redux that integrates with Fitbit API. Utilizes user’s personal Fitbit data to encourage healthy habits by blocking browser usage.',
url: 'https://chrome.google.com/webstore/detail/get-fit-done/fecjgkehmgognabbnohaoombfboddooo',
github: 'https://github.com/katedjackson/get-fit-done',
deployedUrl: 'https://chrome.google.com/webstore/detail/get-fit-done/fecjgkehmgognabbnohaoombfboddooo'
}
// const project2 = {
// id: 2,
// name: 'Tech talk: react server-side rendering',
// img: 'images/ReactServerSideRendering.png',
// description: 'Learn how React can also be used on our server and the differences between client-side versus server-side rendering.',
// url: 'https://www.youtube.com/watch?v=PySMaETAgQE',
// github: 'https://github.com/kmiddleton14/personal-website'
// }
const project2 = {
id: 3,
name: 'Storecaster',
img: 'public/images/Storecaster.png',
description: 'E-commerce site that lets users purchase the weather. Used Postgres, Express.js, React.js, and Redux.',
url: 'https://www.github.com/kmiddleton14/Storecaster',
github: 'https://www.github.com/kmiddleton14/Storecaster'
}
const sidebarInfo = { topImage: '../../public/images/Newyork-skyline.jpg', headshotImg:'public/images/Headshot.jpg', name: 'Kathryn Middleton', description: 'System.out.println("Hello world!")'}
const tumblrIcon = { id: 1, label: 'Tumblr', class: 'icon fa-tumblr', href: 'https://kmiddleton14.tumblr.com/', }
const twitterIcon = { id: 2, label: 'Twitter', class: 'icon fa-twitter', href: 'https://twitter.com/kmiddleton14', }
const linkedInIcon = { id: 3, label: 'LinkedIn', class: 'icon fa-linkedin', href: 'https://www.linkedin.com/in/kmiddleton14', }
const githubIcon = { id: 4, label: 'Github', class: 'icon fa-github', href: 'https://github.com/kmiddleton14', }
const emailIcon = { id: 5, label: 'Email', class: 'icon fa-envelope', href: 'mailto:kmiddleton14@gmail.com?Subject=Hello', }
const projectData = [project1, project2]
const socialIcons = [ linkedInIcon, githubIcon, emailIcon, tumblrIcon, twitterIcon ]
module.exports = { projectData, sidebarInfo, socialIcons }