@@ -10,18 +10,26 @@ function Home() {
10
10
< div >
11
11
< Head >
12
12
< title > HelpChat ToolBox</ title >
13
- < meta name = "description" content = "A collection of tools and solutions you might find useful for you and your server." />
13
+ < meta
14
+ name = "description"
15
+ content = "A collection of tools and solutions you might find useful for you and your server."
16
+ />
14
17
</ Head >
15
18
< main
16
19
css = { css `
17
20
${ tw `flex flex-col md:height[calc(100vh - 3.5rem)]` }
18
21
` }
19
22
>
20
- < div css = { tw `text-white w-full md:px-8 p-16 h-64 text-center space-y-7` } >
23
+ < div
24
+ css = { tw `text-white w-full md:px-8 p-16 md:h-64 text-center space-y-7` }
25
+ >
21
26
< p css = { tw `text-lg text-brightblue` } > Introducing the all new</ p >
22
27
< div css = { tw `text-white text-center space-y-12` } >
23
28
< p css = { tw `text-5xl font-bold` } > HelpChat ToolBox</ p >
24
- < p css = { tw `text-base text-lightgray ` } > A collection of tools and solutions you might find useful for you and your server.</ p >
29
+ < p css = { tw `text-base text-lightgray` } >
30
+ A collection of tools and solutions you might find useful for you
31
+ and your server.
32
+ </ p >
25
33
</ div >
26
34
</ div >
27
35
< div
@@ -31,7 +39,7 @@ function Home() {
31
39
>
32
40
< div
33
41
css = { css `
34
- ${ tw `block mx-auto w-max mt-8` }
42
+ ${ tw `block mx-auto w-max mt-8 mb-8 md:mb-0 ` }
35
43
` }
36
44
>
37
45
< div
@@ -88,7 +96,7 @@ function ToolboxCard({
88
96
return (
89
97
< Link href = { link } passHref >
90
98
< div
91
- css = { tw `p-3 rounded-2xl bg-white/10 hover:bg-white/20 text-white hover:cursor-pointer width[15rem] h-48 block grid grid-cols-1 place-items-center mix-blend-multiply` }
99
+ css = { tw `p-3 rounded-2xl bg-white/10 hover:bg-white/20 text-white hover:cursor-pointer width[15rem] min-height[12rem] w-56 block grid grid-cols-1 place-items-center mix-blend-multiply` }
92
100
>
93
101
< FontAwesomeIcon icon = { icon } size = { "3x" } />
94
102
< p css = { tw `font-bold text-lg margin-bottom[-1rem]` } > { name } </ p >
0 commit comments