-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTracks.js
More file actions
35 lines (33 loc) · 1.44 KB
/
Tracks.js
File metadata and controls
35 lines (33 loc) · 1.44 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
import { Card } from "@mui/material";
import Support from '../Assets/support_1.svg'
function Tracks() {
return (
<div className="Tracks" id="tracks">
<h1 style={{marginTop: '0px'}}>Tracks</h1>
<div className="Tracks-Flex">
<Card style={{borderRadius: '30px'}} className='Track-Card'>
<img className='Track-Logo' src={Support} alt="Support logo"/>
<h1 className="Track-Name">Coming soon</h1>
<div className='Track-Text'>
Stay tuned to learn more about our prize tracks for this year.
</div>
</Card>
<Card style={{borderRadius: '30px'}} className='Track-Card'>
<img className='Track-Logo' src={Support} alt="Support logo"/>
<h1 className="Track-Name">Coming soon</h1>
<div className='Track-Text'>
Stay tuned to learn more about our prize tracks for this year.
</div>
</Card>
<Card style={{borderRadius: '30px'}} className='Track-Card'>
<img className='Track-Logo' src={Support} alt="Support logo"/>
<h1 className="Track-Name">Coming soon</h1>
<div className='Track-Text'>
Stay tuned to learn more about our prize tracks for this year.
</div>
</Card>
</div>
</div>
);
}
export default Tracks;