-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathHomepage.js
54 lines (49 loc) · 1.9 KB
/
Homepage.js
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import React from 'react';
import Button from '../UI/Button';
import styles from './Homepage.module.css';
import sampleImg from '../../assets/images/sample.png';
import Contributions from '../Contributions/Contributions';
import Members from '../Members/Members';
import Internships from '../Internships/Internships';
import About from '../NewAbout/About'
const Homepage = props => {
return (
<div>
<table className={styles['homepage-table']}>
<tbody>
<tr className={styles['homepage-table-row']}>
<td className={styles['homepage-table-data']}>
<About></About>
</td>
<td className={styles['homepage-table-data']}>
<img alt="sampleimage" src={sampleImg} className={styles.image}></img>
</td>
</tr>
<tr>
<td className={styles['homepage-table-button']}>
<Button>
Get Started
</Button>
<Button>
GitHub
</Button>
</td>
</tr>
<tr className={styles['homepage-table-row']}>
<td className={styles['homepage-table-data']}>
<Contributions></Contributions>
</td>
<td className={styles['homepage-table-data']}>
<Members></Members>
</td>
<td className={styles['homepage-table-data']}></td>
<td className={styles['homepage-table-data']}>
<Internships></Internships>
</td>
</tr>
</tbody>
</table>
</div>
)
}
export default Homepage;