@@ -14,37 +14,46 @@ export default function Footer() {
1414 return (
1515 < footer className = "footer footer--dark" >
1616 < div className = "container container--fluid" >
17- < a href = "https://formidable.com" >
18- < FormidableLogo className = { styles . footerLogo } />
19- </ a >
20- </ div >
17+ < div className = { styles . footerContent } >
18+ < div className = { styles . logoLinksContainer } >
19+ < a href = "https://formidable.com" >
20+ < FormidableLogo className = { styles . footerLogo } />
21+ </ a >
2122
22- < div className = "container container--fluid" >
23- { links && links . length > 0 && (
24- < div className = "footer__links" >
25- { links . map ( ( linkItem , i ) => (
26- < div key = { i } className = "margin-vert--md" >
27- { linkItem . title && (
28- < h4 className = "footer__title" > { linkItem . title } </ h4 >
29- ) }
30- { linkItem . items != null &&
31- Array . isArray ( linkItem . items ) &&
32- linkItem . items . length > 0
33- ? linkItem . items . map ( ( item , key ) => (
34- < span key = { item . to } >
35- < Link className = "footer__link-item" to = { item . to } >
36- { item . label }
37- </ Link >
38- { key !== linkItem . items . length - 1 && (
39- < span className = "footer__link-separator" > ·</ span >
40- ) }
41- </ span >
42- ) )
43- : null }
23+ { links && links . length > 0 && (
24+ < div className = "footer__links" >
25+ { links . map ( ( linkItem , i ) => (
26+ < div key = { i } className = "margin-vert--md" >
27+ { linkItem . title && (
28+ < h4 className = "footer__title" > { linkItem . title } </ h4 >
29+ ) }
30+ { linkItem . items != null &&
31+ Array . isArray ( linkItem . items ) &&
32+ linkItem . items . length > 0
33+ ? linkItem . items . map ( ( item , key ) => (
34+ < span key = { item . to } >
35+ < Link className = "footer__link-item" to = { item . to } >
36+ { item . label }
37+ </ Link >
38+ { key !== linkItem . items . length - 1 && (
39+ < span className = "footer__link-separator" > ·</ span >
40+ ) }
41+ </ span >
42+ ) )
43+ : null }
44+ </ div >
45+ ) ) }
4446 </ div >
45- ) ) }
47+ ) }
48+ </ div >
49+
50+ < div className = { styles . footerDescription } >
51+ Formidable is a global design and engineering consultancy and open
52+ source software organization, specializing in digital products and
53+ transformation. We have location hubs in Seattle, London, Toronto,
54+ Denver, Atlanta, and Phoenix with remote consultants worldwide.
4655 </ div >
47- ) }
56+ </ div >
4857 </ div >
4958
5059 < div className = "container container--fluid" >
0 commit comments