File tree Expand file tree Collapse file tree 5 files changed +38
-9
lines changed Expand file tree Collapse file tree 5 files changed +38
-9
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import Button from './Button';
3
3
const Headline = ( ) => {
4
4
return (
5
5
< div className = 'home' >
6
- < div > MLOps workflow for Javascript</ div >
6
+ < div className = 'bigHeadline' > MLOps workflow for Javascript</ div >
7
7
< div > Harness MLflow's MLOps functionality for your Javascript application with MLflow.js</ div >
8
8
< Button />
9
9
</ div >
Original file line number Diff line number Diff line change
1
+ import Image from 'next/image'
2
+
1
3
const NavBar = ( ) => {
2
4
return (
3
5
< div className = 'navBar' >
4
- < div > MLflow.js</ div >
6
+ < div className = 'navBarMlflow' > MLflow.js</ div >
5
7
< div className = 'navBarLinks' >
6
8
< div > Home</ div >
7
9
< div className = 'navBarLinksFeatures' > Features</ div >
8
10
< div className = 'navBarLinksDemo' > Demo</ div >
9
11
< div className = 'navBarLinksTeam' > Team</ div >
10
- < div className = 'navBarLinksGithub' > G</ div >
11
- < div className = 'navBarLinksLinkedIn' > L</ div >
12
+ < a
13
+ href = 'https://github.com/oslabs-beta/mlflow-js'
14
+ className = 'navBarLinksGithub'
15
+ >
16
+ { /* <img src='../../assets/Github_logo.png' alt='G'></img> */ }
17
+ < Image
18
+ src = '/assets/Github_logo.png'
19
+ width = { 50 }
20
+ height = { 50 }
21
+ alt = 'M'
22
+ />
23
+ </ a >
24
+ < a href = '' className = 'navBarLinksLinkedIn' >
25
+ L
26
+ </ a >
12
27
</ div >
13
28
</ div >
14
29
) ;
Original file line number Diff line number Diff line change 2
2
@tailwind components;
3
3
@tailwind utilities;
4
4
5
- : root {
5
+ /* :root {
6
6
--background: #ffffff;
7
7
--foreground: #171717;
8
8
}
12
12
--background: #0a0a0a;
13
13
--foreground: #ededed;
14
14
}
15
- }
15
+ } */
16
16
17
17
body {
18
18
color : var (--foreground );
19
19
background : var (--background );
20
- font-family : Arial , Helvetica , sans-serif ;
20
+ font-family : Inter ;
21
21
font-size : 1rem ;
22
+ color : rgb (0 , 0 , 0 );
22
23
}
23
24
24
25
@layer utilities {
@@ -74,18 +75,19 @@ body {
74
75
grid-row : 1 ;
75
76
display : grid;
76
77
grid-template-columns : 0.7rem 1.3rem 1fr 1.3rem 0.7rem ;
77
- grid-template-rows : 1.3rem 2.8 rem 1fr min-content 1.3rem ;
78
+ grid-template-rows : 1.3rem min-content 1fr min-content 1.3rem ;
78
79
}
79
80
80
81
.navBar {
81
82
grid-column : 2 / 5 ;
82
83
grid-row : 2 ;
83
84
width : 100% ;
84
85
height : 100% ;
85
- background-color : # 0a0a0a ;
86
+ background-color : # 7e7e7e ;
86
87
display : grid;
87
88
grid-template-columns : auto auto;
88
89
grid-template-rows : 100% ;
90
+ /* text-align: center; */
89
91
}
90
92
91
93
.navBarLinks {
96
98
display : grid;
97
99
grid-template-columns : repeat (calc (100% / 6 ), 6 );
98
100
grid-template-rows : 100% ;
101
+ align-items : center;
99
102
}
100
103
101
104
.navBarLinksFeatures {
@@ -118,6 +121,17 @@ body {
118
121
grid-column : 6 ;
119
122
}
120
123
124
+ .navBarMlflow {
125
+ color : rgb (66 , 107 , 31 );
126
+ font-size : 1.2rem ;
127
+ font-family : Newsreader;
128
+ }
129
+
130
+ .bigHeadline {
131
+ font-size : 1.7rem ;
132
+ font-family : Newsreader;
133
+ }
134
+
121
135
.mobileInnerWrapper {
122
136
grid-column : 3 ;
123
137
grid-row : 3 ;
You can’t perform that action at this time.
0 commit comments