@@ -17,7 +17,13 @@ import {
17
17
Title ,
18
18
} from "@mantine/core" ;
19
19
import classes from "./page.module.css" ;
20
- import { IconArrowRight , IconArrowUpRight } from "@tabler/icons-react" ;
20
+ import {
21
+ IconArrowRight ,
22
+ IconArrowUpRight ,
23
+ IconBrandGithub ,
24
+ IconBrandInstagram ,
25
+ IconBrandYoutube ,
26
+ } from "@tabler/icons-react" ;
21
27
import SiteFooter from "@/_components/footer/Footer" ;
22
28
import { BannerAnimation } from "@/_components/banner/BannerAnimation" ;
23
29
import WorkSection from "@/_components/works/WorkSection" ;
@@ -39,7 +45,7 @@ export default function Home() {
39
45
40
46
return (
41
47
< >
42
- < Space h = { 30 } />
48
+ < Space h = { 150 } />
43
49
< Container size = "xl" pos = "relative" >
44
50
{ /* <Box
45
51
w={500}
@@ -76,19 +82,17 @@ export default function Home() {
76
82
>
77
83
Building the future with clean, efficient, and{ " " }
78
84
< Text
79
- variant = "gradient "
85
+ variant = "text "
80
86
component = "span"
81
- gradient = { { from : "green" , to : "blue" , deg : 90 } }
87
+ // gradient={{ from: "green", to: "blue", deg: 90 }}
82
88
fz = { 85 }
83
89
fw = { 900 }
84
- style = {
85
- {
86
- // background: "linear-gradient(45deg, red, blue)",
87
- // backgroundClip: "text",
88
- // color:
89
- // "light-dark(var(--mantine-color-bluegray-3), var(--mantine-color-dark-2))",
90
- }
91
- }
90
+ style = { {
91
+ // background: "linear-gradient(45deg, red, blue)",
92
+ // backgroundClip: "text",
93
+ color :
94
+ "light-dark(var(--mantine-color-gray-5), var(--mantine-color-dark-2))" ,
95
+ } }
92
96
>
93
97
scalable code.
94
98
</ Text >
@@ -105,29 +109,49 @@ export default function Home() {
105
109
</ Box >
106
110
< Space h = { 50 } />
107
111
< Group justify = "space-between" >
108
- < Group >
112
+ { /* <Group>
109
113
<Button color="black" radius="md" size="md">
110
114
Talk with me
111
115
</Button>
112
116
<Button variant="default" radius="md" size="md">
113
117
See my work
114
118
</Button>
115
- </ Group >
119
+ </Group> */ }
116
120
< Group >
117
- < Link href = { "#" } title = "" className = { classes . link } >
121
+ < Button
122
+ variant = "default"
123
+ component = { Link }
124
+ href = "#"
125
+ radius = "xl"
126
+ leftSection = { < IconBrandGithub size = { 18 } /> }
127
+ >
118
128
Github
119
- </ Link >
120
- < Link href = { "#" } title = "" className = { classes . link } >
129
+ </ Button >
130
+ < Button
131
+ variant = "default"
132
+ component = { Link }
133
+ href = "#"
134
+ radius = "xl"
135
+ leftSection = { < IconBrandYoutube size = { 18 } /> }
136
+ >
121
137
Youtube
122
- </ Link >
123
- < Link href = { "#" } title = "" className = { classes . link } >
138
+ </ Button >
139
+ < Button
140
+ variant = "default"
141
+ component = { Link }
142
+ href = "#"
143
+ radius = "xl"
144
+ leftSection = { < IconBrandInstagram size = { 18 } /> }
145
+ >
124
146
Instagram
125
- </ Link >
147
+ </ Button >
126
148
</ Group >
127
149
</ Group >
128
150
</ Container >
129
151
< Space h = { 150 } />
130
- < Box > { /* <BannerAnimation images={images} speed={100000} /> */ } </ Box >
152
+ < Box >
153
+ < BannerAnimation images = { images } speed = { 100000 } />
154
+ </ Box >
131
155
< Space h = { 150 } />
132
156
< Container size = "xl" pos = "relative" >
133
157
< Grid >
@@ -152,6 +176,8 @@ export default function Home() {
152
176
radius = "xl"
153
177
rightSection = { < IconArrowRight /> }
154
178
fz = { 16 }
179
+ component = { Link }
180
+ href = "/about-me"
155
181
>
156
182
About Me
157
183
</ Button >
0 commit comments