This repository was archived by the owner on Sep 21, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +31
-9
lines changed Expand file tree Collapse file tree 4 files changed +31
-9
lines changed Original file line number Diff line number Diff line change 24
24
work correctly both with client-side routing and a non-root public URL.
25
25
Learn how to configure a non-root public URL by running `npm run build`.
26
26
-->
27
+ < link rel ="preconnect " href ="https://fonts.googleapis.com "/>
28
+ < link rel ="preconnect " href ="https://fonts.gstatic.com " crossorigin />
29
+ < link href ="https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap " rel ="stylesheet "/>
27
30
< title > GitMe</ title >
28
31
</ head >
29
32
< body >
Original file line number Diff line number Diff line change @@ -9,11 +9,6 @@ export default function App() {
9
9
10
10
return (
11
11
< div className = "App" >
12
- < header >
13
- < link rel = "preconnect" href = "https://fonts.googleapis.com" />
14
- < link rel = "preconnect" href = "https://fonts.gstatic.com" crossorigin />
15
- < link href = "https://fonts.googleapis.com/css2?family=Roboto:wght@100& display = swap " rel = "stylesheet" />
16
- </ header >
17
12
< div id = "intro-block" >
18
13
< img src = { logo } alt = "Logo" className = 'logo' />
19
14
< h2 class = 'head' > An AI improvement application</ h2 >
Original file line number Diff line number Diff line change 1
- .App * {
1
+ .App-main {
2
2
color : white;
3
+ white-space : pre-wrap;
4
+ display : block;
5
+ max-width : 1100px ;
6
+ margin : 0 auto;
7
+ font-family : roboto;
8
+ font-size : 20px ;
9
+ }
10
+
11
+ h2 {
12
+ margin-top : 10px ;
13
+ margin-bottom : 30px ;
14
+ padding-bottom : 15px ;
15
+ border-bottom : 3px dashed white;
16
+ }
17
+
18
+ .App-main : not (h2 ) {
19
+ text-align : left;
20
+ margin : 0 10px ;
21
+ }
22
+
23
+ .App-main > : not (h2 ) {
24
+ padding-bottom : 20px ;
25
+ border-bottom : 1px solid # ccc ;
26
+ margin-bottom : 20px ;
3
27
}
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ function ResumeReview(){
7
7
8
8
return (
9
9
< div className = "App" >
10
- < body >
10
+ < div className = "App-main" >
11
11
< h2 > Here is a list of your repositories and a resume summary of each one</ h2 >
12
12
{ state . data . map ( ( item , index ) => (
13
13
< div key = { index } >
14
- < h4 > { item . repository } </ h4 >
14
+ < h3 > { item . repository } </ h3 >
15
15
< p > { item . generated_summary } </ p >
16
16
</ div >
17
17
) ) }
18
- </ body >
18
+ </ div >
19
19
</ div >
20
20
21
21
) ;
You can’t perform that action at this time.
0 commit comments