1
1
import Link from 'next/link' ;
2
- import s from './Footer.module.css' ;
3
2
4
- import Logo from 'components/icons/Logo' ;
5
- import GitHub from 'components/icons/GitHub' ;
3
+ import Logo from '@/components/icons/Logo' ;
4
+ import GitHub from '@/components/icons/GitHub' ;
5
+
6
+ import s from './Footer.module.css' ;
6
7
7
8
export default function Footer ( ) {
8
9
return (
9
10
< footer className = "mx-auto max-w-[1920px] px-6 bg-zinc-900" >
10
11
< div className = "grid grid-cols-1 lg:grid-cols-12 gap-8 border-b border-zinc-600 py-12 text-white transition-colors duration-150 bg-zinc-900" >
11
12
< div className = "col-span-1 lg:col-span-2" >
12
- < Link href = "/" >
13
- < a className = "flex flex-initial items-center font-bold md:mr-24" >
14
- < span className = "rounded-full border border-zinc-700 mr-2" >
15
- < Logo />
16
- </ span >
17
- < span > ACME</ span >
18
- </ a >
13
+ < Link
14
+ href = "/"
15
+ className = "flex flex-initial items-center font-bold md:mr-24"
16
+ >
17
+ < span className = "rounded-full border border-zinc-700 mr-2" >
18
+ < Logo />
19
+ </ span >
20
+ < span > ACME</ span >
19
21
</ Link >
20
22
</ div >
21
23
< div className = "col-span-1 lg:col-span-2" >
22
24
< ul className = "flex flex-initial flex-col md:flex-1" >
23
25
< li className = "py-3 md:py-0 md:pb-4" >
24
- < Link href = "/" >
25
- < a className = "text-white hover:text-zinc-200 transition ease-in-out duration-150" >
26
- Home
27
- </ a >
26
+ < Link
27
+ href = "/"
28
+ className = "text-white hover:text-zinc-200 transition ease-in-out duration-150"
29
+ >
30
+ Home
28
31
</ Link >
29
32
</ li >
30
33
< li className = "py-3 md:py-0 md:pb-4" >
31
- < Link href = "/" >
32
- < a className = "text-white hover:text-zinc-200 transition ease-in-out duration-150" >
33
- About
34
- </ a >
34
+ < Link
35
+ href = "/"
36
+ className = "text-white hover:text-zinc-200 transition ease-in-out duration-150"
37
+ >
38
+ About
35
39
</ Link >
36
40
</ li >
37
41
< li className = "py-3 md:py-0 md:pb-4" >
38
- < Link href = "/" >
39
- < a className = "text-white hover:text-zinc-200 transition ease-in-out duration-150" >
40
- Careers
41
- </ a >
42
+ < Link
43
+ href = "/"
44
+ className = "text-white hover:text-zinc-200 transition ease-in-out duration-150"
45
+ >
46
+ Careers
42
47
</ Link >
43
48
</ li >
44
49
< li className = "py-3 md:py-0 md:pb-4" >
45
- < Link href = "/" >
46
- < a className = "text-white hover:text-zinc-200 transition ease-in-out duration-150" >
47
- Blog
48
- </ a >
50
+ < Link
51
+ href = "/"
52
+ className = "text-white hover:text-zinc-200 transition ease-in-out duration-150"
53
+ >
54
+ Blog
49
55
</ Link >
50
56
</ li >
51
57
</ ul >
@@ -58,17 +64,19 @@ export default function Footer() {
58
64
</ p >
59
65
</ li >
60
66
< li className = "py-3 md:py-0 md:pb-4" >
61
- < Link href = "/" >
62
- < a className = "text-white hover:text-zinc-200 transition ease-in-out duration-150" >
63
- Privacy Policy
64
- </ a >
67
+ < Link
68
+ href = "/"
69
+ className = "text-white hover:text-zinc-200 transition ease-in-out duration-150"
70
+ >
71
+ Privacy Policy
65
72
</ Link >
66
73
</ li >
67
74
< li className = "py-3 md:py-0 md:pb-4" >
68
- < Link href = "/" >
69
- < a className = "text-white hover:text-zinc-200 transition ease-in-out duration-150" >
70
- Terms of Use
71
- </ a >
75
+ < Link
76
+ href = "/"
77
+ className = "text-white hover:text-zinc-200 transition ease-in-out duration-150"
78
+ >
79
+ Terms of Use
72
80
</ Link >
73
81
</ li >
74
82
</ ul >
0 commit comments