1
1
import React from "react"
2
2
import SocialIcons from "../SocialIcons"
3
+ import SponsersConf from "../Sponers"
3
4
4
5
const links = [
5
6
[
@@ -24,52 +25,58 @@ const links = [
24
25
25
26
const FooterConf = ( ) => {
26
27
return (
27
- < footer className = "text-gray-600 bg-[#171E26]" >
28
- < div className = "container px-5 md:py-24 mx-auto flex md:items-start md:flex-row md:flex-nowrap flex-wrap flex-col" >
29
- < div className = "w-64 shrink-0 md:mx-0 text-left" >
30
- < a
31
- href = "/conf/"
32
- className = "flex font-medium md:items-center justify-start text-gray-900"
33
- >
34
- < img src = "/img/conf/graphql-conf-logo.svg" className = "w-[200px]" />
35
- </ a >
36
- </ div >
37
- < div className = "grow flex flex-wrap justify-between lg:pl-20 -mb-10 md:mt-0 mt-10 text-left" >
38
- { links . map ( ( link , i ) => (
39
- < div key = { i } className = "md:w-1/3 md:px-4" >
40
- < div className = "list-none mb-10 md:mb-20" >
41
- { link . map ( ( link , i ) => (
42
- < li key = { i } >
43
- < a
44
- href = { link . href }
45
- className = "text-white font-semibold text-base hover:text-white hover:font-semibold hover:underline"
46
- >
47
- { link . text }
48
- </ a >
49
- </ li >
50
- ) ) }
28
+ < >
29
+ < SponsersConf />
30
+ < footer className = "text-gray-600 bg-[#171E26]" >
31
+ < div className = "container px-5 md:py-24 mx-auto flex md:items-start md:flex-row md:flex-nowrap flex-wrap flex-col" >
32
+ < div className = "w-64 shrink-0 md:mx-0 text-left" >
33
+ < a
34
+ href = "/conf/"
35
+ className = "flex font-medium md:items-center justify-start text-gray-900"
36
+ >
37
+ < img
38
+ src = "/img/conf/graphql-conf-logo.svg"
39
+ className = "w-[200px]"
40
+ />
41
+ </ a >
42
+ </ div >
43
+ < div className = "grow flex flex-wrap justify-between lg:pl-20 -mb-10 md:mt-0 mt-10 text-left" >
44
+ { links . map ( ( link , i ) => (
45
+ < div key = { i } className = "md:w-1/3 md:px-4" >
46
+ < div className = "list-none mb-10 md:mb-20" >
47
+ { link . map ( ( link , i ) => (
48
+ < li key = { i } >
49
+ < a
50
+ href = { link . href }
51
+ className = "text-white font-semibold text-base hover:text-white hover:font-semibold hover:underline"
52
+ >
53
+ { link . text }
54
+ </ a >
55
+ </ li >
56
+ ) ) }
57
+ </ div >
51
58
</ div >
52
- </ div >
53
- ) ) }
59
+ ) ) }
60
+ </ div >
61
+ </ div >
62
+ < div className = "container px-5 mt-5 sm:mt-0 py-4 flex flex-wrap flex-col sm:flex-row" >
63
+ < p className = "text-white text-sm text-center sm:text-left" >
64
+ Copyright © { `${ new Date ( ) . getFullYear ( ) } ` } The GraphQL Foundation.
65
+ All rights reserved.
66
+ < br />
67
+ For web site terms of use, trademark policy and general project
68
+ policies please see
69
+ < a href = "https://lfprojects.org" target = "_blank" >
70
+ https://lfprojects.org
71
+ </ a >
72
+ .
73
+ </ p >
74
+ < span className = "inline-flex sm:ml-auto sm:mt-0 mt-2 justify-center sm:justify-start items-start" >
75
+ < SocialIcons />
76
+ </ span >
54
77
</ div >
55
- </ div >
56
- < div className = "container px-5 mt-5 sm:mt-0 py-4 flex flex-wrap flex-col sm:flex-row" >
57
- < p className = "text-white text-sm text-center sm:text-left" >
58
- Copyright © { `${ new Date ( ) . getFullYear ( ) } ` } The GraphQL Foundation.
59
- All rights reserved.
60
- < br />
61
- For web site terms of use, trademark policy and general project
62
- policies please see
63
- < a href = "https://lfprojects.org" target = "_blank" >
64
- https://lfprojects.org
65
- </ a >
66
- .
67
- </ p >
68
- < span className = "inline-flex sm:ml-auto sm:mt-0 mt-2 justify-center sm:justify-start items-start" >
69
- < SocialIcons />
70
- </ span >
71
- </ div >
72
- </ footer >
78
+ </ footer >
79
+ </ >
73
80
)
74
81
}
75
82
0 commit comments