Skip to content

Commit b6680d3

Browse files
committed
final changes
1 parent 592cf76 commit b6680d3

File tree

4 files changed

+70
-55
lines changed

4 files changed

+70
-55
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "frontend",
2+
"name": "fintrack",
33
"version": "0.1.0",
44
"private": true,
55
"dependencies": {
@@ -52,4 +52,4 @@
5252
"last 1 safari version"
5353
]
5454
}
55-
}
55+
}

src/App.css

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,22 @@
33
min-height: 70vh;
44
/* text-align: center; */
55
}
6-
.groupCardHover:hover{
6+
.groupCardHover:hover {
77
transform: scale(1.2);
88
}
9+
.team-card:hover {
10+
transform: translateY(-8px);
11+
box-shadow: 0 10px 10px -10px;
12+
}
13+
.remove-effect {
14+
margin: 0;
15+
background: inherit;
16+
width: inherit;
17+
}
18+
.remove-effect:hover {
19+
transform: scaleY(0.2);
20+
box-shadow: none;
21+
}
922

1023
/* .App-logo {
1124
height: 40vmin;
@@ -64,7 +77,7 @@ footer {
6477
bottom: 0;
6578
background-color: rgba(59, 59, 59, 0.5);
6679
text-align: center;
67-
font-weight: 600;
80+
font-weight: 500;
6881
height: 10vh;
6982
width: auto;
7083
margin: auto;

src/components/Footer.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
import React from "react";
2+
import { Link } from "react-router-dom";
23

34
function Footer() {
45
let currentYear = new Date().getFullYear();
56
return (
67
<footer>
7-
<p>Copyright © {currentYear} FinTrack</p>
8+
<p>Copyright © {currentYear} <Link style={{ color: '#0e0ee9', fontWeight: '700' }} to={'/team'}>FinTrack</Link> </p>
89
<p>Made with 💖 in India</p>
910
</footer>
1011
);

src/pages/Team/index.js

Lines changed: 51 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,61 @@
11
import React from 'react'
2-
import { Container } from 'react-bootstrap'
2+
import { Card, Container } from 'react-bootstrap'
33
import { UserCard } from 'react-ui-cards'
44
import nrj from '../../assets/images/nrj.jpg'
55
import ekta from '../../assets/images/ekta.jpeg'
6-
6+
import LinkedInIcon from '@mui/icons-material/LinkedIn';
7+
import GitHubIcon from '@mui/icons-material/GitHub';
8+
import EmailIcon from '@mui/icons-material/Email';
9+
import { Heading } from '@chakra-ui/react'
710
const Team = () => {
811
return (
9-
<React.Fragment>
10-
<Container style={{ display: 'flex', flexDirection: 'row' }}>
11-
12-
<UserCard
13-
float
14-
href='https://github.com/nandcoder'
15-
header='https://i.imgur.com/p5yXGQk.jpg'
16-
avatar={nrj}
17-
name='Nand Raj'
18-
positionName='Full Stack Developer'
19-
stats={[
20-
{
21-
name: 'commits',
22-
value: 365
23-
},
24-
{
25-
name: 'stars',
26-
value: 110
27-
},
28-
{
29-
name: 'repositories',
30-
value: 54
31-
}
32-
]}
33-
/>
34-
<UserCard
35-
float
36-
href='https://github.com/ekkri'
37-
header='https://i.imgur.com/p5yXGQk.jpg'
38-
avatar={ekta}
39-
name='Ekta Kumari'
40-
positionName='UI/UX Developer'
41-
stats={[
42-
{
43-
name: 'commits',
44-
value: 365
45-
},
46-
{
47-
name: 'stars',
48-
value: 110
49-
},
50-
{
51-
name: 'repositories',
52-
value: 54
53-
}
54-
]}
55-
/>
12+
<Container fluid style={{ textAlign: 'center' }}>
13+
<Heading>Team Members</Heading>
14+
<br />
15+
<br />
16+
<Container style={{ display: 'flex', flexDirection: 'row', background: 'inherit', justifyContent: 'space-around' }}>
17+
<Card className="text-center team-card" style={{
18+
maxWidth: '100%',
19+
width: '250px',
20+
background: 'inherit'
21+
}}>
22+
<UserCard
23+
float
24+
href='https://github.com/nandcoder'
25+
header='https://i.imgur.com/p5yXGQk.jpg'
26+
avatar={nrj}
27+
name='Nand Raj'
28+
positionName='Full Stack Developer'
29+
className='remove-effect'
30+
/>
31+
<Card.Footer style={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-between' }}>
32+
<Card.Link href="https://www.linkedin.com/in/nand-raj/"><LinkedInIcon /> LinkedIn</Card.Link>
33+
<Card.Link href="https://github.com/nandcoder"><GitHubIcon /> Github</Card.Link>
34+
<Card.Link href="mailto:[email protected]"><EmailIcon /> Email</Card.Link>
35+
</Card.Footer>
36+
</Card>
37+
<Card className="text-center team-card" style={{
38+
maxWidth: '100%',
39+
width: '250px',
40+
background: 'inherit'
41+
}}>
42+
<UserCard
43+
float
44+
href='https://github.com/ekkri'
45+
header='https://i.imgur.com/p5yXGQk.jpg'
46+
avatar={ekta}
47+
name='Ekta Kumari'
48+
positionName='UI/UX Developer'
49+
className='remove-effect'
50+
/>
51+
<Card.Footer style={{ display: 'flex', flexDirection: 'row', justifyContent: 'space-between' }}>
52+
<Card.Link href="https://www.linkedin.com/in/ekta-kumari-405084215/"><LinkedInIcon /> LinkedIn</Card.Link>
53+
<Card.Link href="https://github.com/ekkri"><GitHubIcon /> Github</Card.Link>
54+
<Card.Link href="mailto:[email protected]@gmail.com"><EmailIcon /> Email</Card.Link>
55+
</Card.Footer>
56+
</Card>
5657
</Container>
57-
</React.Fragment>
58+
</Container>
5859
)
5960
}
6061
export default Team

0 commit comments

Comments
 (0)