@@ -2,27 +2,33 @@ import React from 'react';
2
2
3
3
const Home : React . FunctionComponent = ( ) => {
4
4
return (
5
- < div className = 'bg-gray-200 min-h-screen' >
6
- < div className = 'text-center bg-white py-5' style = { { borderTop : 'rgb(191,13,62) solid 45px' , borderBottom : 'rgb(10,49,97) solid 45px' } } >
5
+ < div className = 'flex flex-col items-center bg-gray-200 min-h-screen' >
6
+ < div className = 'text-center bg-white w-full py-5' style = { { borderTop : 'rgb(191,13,62) solid 45px' , borderBottom : 'rgb(10,49,97) solid 45px' } } >
7
7
< div className = 'flex flex-row items-center justify-center' >
8
8
< span className = 'text-2xl text-flag-blue' > ★</ span >
9
9
< h1 className = 'text-6xl text-bold text-yellow-400 font-big-star uppercase leading-none px-5' >
10
10
Firebrand
11
11
</ h1 >
12
12
< span className = 'text-2xl text-flag-blue' > ★</ span >
13
13
</ div >
14
- < h3 className = 'text-xl text-flag-red font-big-star' > ELO Ratings for U.S. Politicians</ h3 >
14
+ < h3 className = 'text-xl text-flag-red font-big-star' > ELO* Ratings for U.S. Politicians</ h3 >
15
15
</ div >
16
- < h3 className = 'text-3xl text-center font-big-star py-3' > Top Politicians</ h3 >
17
- < div className = 'rounded-lg bg-gray-100 w-5/6 mx-auto' >
16
+ < h3 className = 'text-3xl text-center font-big-star w-3/4 py-1 my-2' style = { { borderBottom : 'black solid 5px' } } > Top Rated Politicians</ h3 >
17
+ < div className = 'flex flex-row justify-around font-big-noodle w-3/4 my-1' >
18
+ < span > * Ratings are technically calculated using Trueskill, not ELO</ span >
19
+ < span > ** Ratings are purely for entertainment purposes</ span >
20
+ </ div >
21
+ < div className = 'rounded-lg bg-gray-100 font-big-noodle w-5/6' >
18
22
< ul >
19
23
< li className = 'flex flex-row items-center rounded-lg hover:bg-gray-300 cursor-pointer text-2xl p-3' >
20
- < img src = '/badges/rank-GrandmasterTier.png' height = { 50 } width = { 50 } />
21
- < span className = 'text-outlined text-white text-3xl font-big-noodle mr-5' > 3700</ span > Bernie Sanders
24
+ 1.
25
+ < img src = '/badges/rank-GrandmasterTier.png' height = { 50 } width = { 50 } className = 'mx-1' />
26
+ < i className = 'text-outlined text-white text-3xl mr-3' > 3700</ i > Bernie Sanders
22
27
</ li >
23
28
< li className = 'flex flex-row items-center rounded-lg hover:bg-gray-300 cursor-pointer text-2xl p-3' >
24
- < img src = '/badges/rank-GrandmasterTier.png' height = { 50 } width = { 50 } />
25
- < span className = 'text-outlined text-white text-3xl font-big-noodle mr-5' > 3655</ span > Barack Obama
29
+ 2.
30
+ < img src = '/badges/rank-GrandmasterTier.png' height = { 50 } width = { 50 } className = 'mx-1' />
31
+ < i className = 'text-outlined text-white text-3xl mr-3' > 3655</ i > Barack Obama
26
32
</ li >
27
33
</ ul >
28
34
</ div >
0 commit comments