File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change 1
1
import * as React from "react"
2
- import { Box , Image } from "@chakra-ui/react"
2
+ import { Box , Image , Text } from "@chakra-ui/react"
3
3
import tlfLogo from "../images/linux-foundation-vert-white.svg"
4
4
import { Link } from "gatsby"
5
5
6
6
const FooterElement = ( ) => (
7
7
< >
8
8
< Box
9
9
w = { "100%" }
10
- h = { "8.75rem" }
10
+ h = { { base : "14rem" , md : "10rem" } }
11
11
bg = { "brand.500" }
12
12
display = { "flex" }
13
13
alignItems = { "center" }
14
14
justifyContent = { "center" }
15
+ flexDir = { "column" }
15
16
>
16
17
< Link
17
18
href = { "https://www.linuxfoundation.org/" }
@@ -20,6 +21,24 @@ const FooterElement = () => (
20
21
>
21
22
< Image src = { tlfLogo } alt = "the-linux-foundation-logo" > </ Image >
22
23
</ Link >
24
+ < Box
25
+ pt = "2rem"
26
+ display = { "flex" }
27
+ alignItems = { "center" }
28
+ justifyContent = { "center" }
29
+ flexDir = { "column" }
30
+ >
31
+ < Text color = { "white" } fontSize = "xs" textAlign = { "center" } >
32
+ { `Copyright © DBOM Technical Project a Series of LF Projects, LLC` }
33
+ </ Text >
34
+ < Text color = { "white" } fontSize = "xs" textAlign = { "center" } >
35
+ { `For website terms of use, trademark policy and other project policies
36
+ please see ` }
37
+ < Link href = "https://lfprojects.org" >
38
+ < Text as = "u" > { `https://lfprojects.org` } </ Text >
39
+ </ Link >
40
+ </ Text >
41
+ </ Box >
23
42
</ Box >
24
43
</ >
25
44
)
You can’t perform that action at this time.
0 commit comments