Skip to content

Commit a1242cc

Browse files
committed
📦 NEW: footer & links
1 parent 7aeb8a2 commit a1242cc

File tree

5 files changed

+42
-1
lines changed

5 files changed

+42
-1
lines changed

components/Footer.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import styles from '../styles/Footer.module.css';
2+
3+
const Footer = () => {
4+
return (
5+
<div className={styles.footer}>
6+
<h3>Made With ❤️. © All Rights Reserved</h3>
7+
</div>
8+
);
9+
};
10+
11+
export default Footer;

data/podMembers.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,47 +4,55 @@ module.exports = [
44
url: '/images/Angelina_Gasharova.jpg',
55
github: 'https://github.com/angelinag',
66
linkedin: 'https://linkedin.com/in/angelina-gasharova-6797691b7',
7+
more: '/pod/angelina',
78
},
89
{
910
name: 'Saad Irfan',
1011
url: '/images/saad.jpg',
1112
github: 'https://github.com/msaaddev',
1213
linkedin: 'https://linkedin.com/in/msaaddev',
14+
more: '/pod/msaaddev',
1315
},
1416
{
1517
name: 'Aneesh Kodali',
1618
url: '/images/Aneesh_Kodali.jpeg',
1719
github: 'https://github.com/aneeshkodali',
1820
linkedin: 'https://linkedin.com/in/aneeshkodali',
21+
more: '/pod/aneeh',
1922
},
2023
{
2124
name: 'Nkosilathi Tauro',
2225
url: '/images/Nkosilathi_Tauro.png',
2326
github: 'https://github.com/nkosi-tauro',
2427
linkedin: 'https://linkedin.com/in/nkosi-tauro',
28+
more: '/pod/nkosilathi',
2529
},
2630
{
2731
name: 'Levy Naibei',
2832
url: '/images/levy.jpeg',
2933
github: 'https://github.com/Levy-Naibei',
3034
linkedin: 'https://linkedin.com/in/Levy-Naibei/',
35+
more: '/pod/levy',
3136
},
3237
{
3338
name: 'Anna Tselikova',
3439
url: '/images/ania.jpg',
3540
github: 'https://github.com/aniats',
3641
linkedin: 'https://linkedin.com/in/anna-tselikova-756496164/',
42+
more: '/pod/anna',
3743
},
3844
{
3945
name: 'Egor Tarasov',
4046
url: '/images/egor.jpeg',
4147
github: 'https://github.com/Jorres',
4248
linkedin: 'https://linkedin.com/',
49+
more: '/pod/egor',
4350
},
4451
{
4552
name: 'Arlyn Miles',
4653
url: '/images/arlyn.png',
4754
github: 'https://github.com/Acrylami',
4855
linkedin: 'https://www.linkedin.com/in/arlyn-m-06b4331b9/',
56+
more: '/pod/arlyn',
4957
},
5058
];

pages/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import SEO from '../components/Seo';
2+
import Coding_Crow from '../components/Coding_Crow';
23
import Pod_Leader from '../components/Pod_Leader';
34
import Pod from '../components/Pod';
4-
import Coding_Crow from '../components/Coding_Crow';
5+
import Footer from '../components/Footer';
56

67
export default function Home() {
78
return (
@@ -10,6 +11,7 @@ export default function Home() {
1011
<Coding_Crow />
1112
<Pod_Leader />
1213
<Pod />
14+
<Footer />
1315
</>
1416
);
1517
}

styles/Footer.module.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.footer {
2+
height: 40vh;
3+
display: flex;
4+
justify-content: center;
5+
align-items: center;
6+
}
7+
8+
.footer h3 {
9+
font-family: 'Lora', serif;
10+
}
11+
12+
@media screen and (max-width: 600px) {
13+
.footer {
14+
height: 100vh;
15+
display: flex;
16+
justify-content: center;
17+
align-items: center;
18+
}
19+
}

styles/Pod.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
display: flex;
1818
flex-direction: row;
1919
flex-wrap: wrap;
20+
justify-content: space-around;
2021
}
2122

2223
/* responsive styles */

0 commit comments

Comments
 (0)