File tree 2 files changed +13
-28
lines changed
2 files changed +13
-28
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,6 @@ import Blogs from "../components/Blogs";
14
14
import Testimonials from "../components/Testimonials" ;
15
15
import Newsletter from "../components/Newsletter" ;
16
16
17
- import Button from "antd/es/button" ;
18
- import ConfigProvider from "antd/es/config-provider" ;
19
- import Row from "antd/es/row" ;
20
-
21
17
export default function Home ( ) {
22
18
return (
23
19
< Layout
@@ -103,30 +99,14 @@ export default function Home() {
103
99
< img className = { styles . cyclopsTitle } src = { title } />
104
100
< h2 className = { styles . cyclopsDesc } > Developer friendly Kubernetes</ h2 >
105
101
< img className = { styles . landingCyclops } src = { landingCyclops } />
106
- < Row >
107
- < ConfigProvider
108
- theme = { {
109
- token : {
110
- colorPrimary : "#fe8801" ,
111
- } ,
112
- } }
113
- >
114
- < Button
115
- href = { "/docs/installation/install/manifest" }
116
- shape = "round"
117
- size = { "large" }
118
- className = { styles . readTheDocs }
119
- style = { {
120
- textDecoration : "none" ,
121
- display : "flex" ,
122
- alignContent : "center" ,
123
- color : "white" ,
124
- } }
125
- >
126
- < h3 > Get started</ h3 >
127
- </ Button >
128
- </ ConfigProvider >
129
- </ Row >
102
+ < button
103
+ onClick = { ( ) => {
104
+ window . location . href = "/docs/installation/install/manifest"
105
+ } }
106
+ className = { styles . readTheDocs }
107
+ >
108
+ < h3 style = { { margin : "0px 20px 0px 20px" } } > Get started</ h3 >
109
+ </ button >
130
110
</ div >
131
111
< Comparison />
132
112
< div className = { styles . backgroundcolor } >
Original file line number Diff line number Diff line change 35
35
}
36
36
37
37
.readTheDocs {
38
+ height : 40px ;
39
+ text-decoration : none;
40
+ color : white;
41
+ border-radius : 20px ;
38
42
margin-left : 5px ;
39
43
backdrop-filter : blur (3px );
40
44
background-color : rgba (255 , 255 , 255 , 0.3 );
43
47
44
48
.readTheDocs : hover {
45
49
background-color : rgba (255 , 255 , 255 , 0.1 );
50
+ cursor : pointer;
46
51
}
47
52
48
53
.backgroundYaml {
You can’t perform that action at this time.
0 commit comments