@@ -12,7 +12,10 @@ import {
1212} from '@chakra-ui/react' ;
1313import { keyframes } from '@emotion/react' ;
1414import { Route , Routes } from 'react-router-dom' ;
15- import { CollecticonCog } from '@devseed-ui/collecticons-chakra' ;
15+ import {
16+ CollecticonCog ,
17+ CollecticonHeart
18+ } from '@devseed-ui/collecticons-chakra' ;
1619
1720import { RequireAuth } from '$components/auth/RequireAuth' ;
1821import MainNavigation from '$components/MainNavigation' ;
@@ -25,6 +28,7 @@ import CollectionDetail from '$pages/CollectionDetail';
2528import Sandbox from '$pages/Sandbox' ;
2629
2730import { useKeycloak } from './auth/Context' ;
31+ import SmartLink from '$components/SmartLink' ;
2832
2933const rotate = keyframes `
3034 from {
@@ -148,7 +152,7 @@ function AppFooter() {
148152 mt = 'auto'
149153 p = { 4 }
150154 >
151- < Flex gap = { 4 } alignItems = 'center' >
155+ < Flex gap = { 4 } alignItems = 'center' width = '100%' >
152156 < Text as = 'span' >
153157 Powered by{ ' ' }
154158 < strong >
@@ -160,6 +164,13 @@ function AppFooter() {
160164 </ Text >
161165 < Divider orientation = 'vertical' borderColor = 'base.200a' h = '1em' />
162166 { new Date ( ) . getFullYear ( ) }
167+ < Text as = 'span' ml = 'auto' >
168+ Made with < CollecticonHeart meaningful title = 'love' /> by{ ' ' }
169+ < SmartLink to = 'https://developmentseed.org' color = 'inherit' >
170+ Development Seed
171+ </ SmartLink >
172+ .
173+ </ Text >
163174 </ Flex >
164175 </ Flex >
165176 ) ;
0 commit comments