1+ import './FeatCards.css' ;
2+ import back1 from './back1.png' ;
3+ import back2 from './back2.png' ;
4+ import c1_1 from './c1-1.png' ;
5+ import c1_2 from './c1-2.png' ;
6+ import c1_3 from './c1-3.png' ;
7+ import c1_4 from './c1-4.png' ;
8+ import c2_1 from './c2-1.png' ;
9+ import c2_2 from './c2-2.png' ;
10+ import c2_3 from './c2-3.png' ;
11+ import c2_4 from './c2-4.png' ;
12+ import p1 from './p-1.png' ;
13+ import p2 from './p-2.png' ;
14+
15+ const FeatCards = ( ) => {
16+ return (
17+ < div className = "feat-cards" style = { { backgroundColor : '#081c2c' } } >
18+ < div className = "card" style = { { backgroundImage : `url(${ back1 } )` } } >
19+ < div className = "card-content" >
20+ < h2 > Thousands of thrilling games.< br /> Thousands of ways to win big.</ h2 >
21+ < div className = "features" >
22+ < div className = "feature" >
23+ < img src = { c1_1 } alt = "New Releases" />
24+ New Releases
25+ </ div >
26+ < div className = "feature" >
27+ < img src = { c1_2 } alt = "Slots" />
28+ Slots
29+ </ div >
30+ < div className = "feature" >
31+ < img src = { c1_3 } alt = "Live Casino" />
32+ Live Casino
33+ </ div >
34+ < div className = "feature" >
35+ < img src = { c1_4 } alt = "Table Games" />
36+ Table Games
37+ </ div >
38+ </ div >
39+ < button className = "explore-button" > Explore Casino</ button >
40+ </ div >
41+ < img src = { p1 } alt = "Person" className = "person-image" />
42+ </ div >
43+ < div className = "card" style = { { backgroundImage : `url(${ back2 } )` } } >
44+ < div className = "card-content" >
45+ < h2 > Watch and bet on the biggest events across sports and beyond</ h2 >
46+ < div className = "features" >
47+ < div className = "feature" >
48+ < img src = { c2_1 } alt = "Sports" />
49+ Sports
50+ </ div >
51+ < div className = "feature" >
52+ < img src = { c2_2 } alt = "Esports" />
53+ Esports
54+ </ div >
55+ < div className = "feature" >
56+ < img src = { c2_3 } alt = "Horse Racing" />
57+ Horse Racing
58+ </ div >
59+ < div className = "feature" >
60+ < img src = { c2_4 } alt = "Live Streams" />
61+ Live Streams
62+ </ div >
63+ </ div >
64+ < button className = "explore-button" > Explore Sports</ button >
65+ </ div >
66+ < img src = { p2 } alt = "Person" className = "person-image" />
67+ </ div >
68+ </ div >
69+ ) ;
70+ } ;
71+
72+ export default FeatCards ;
0 commit comments