Skip to content

Commit 7c90d28

Browse files
committed
Add footer note
1 parent 73edf9c commit 7c90d28

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

packages/client/src/App.tsx

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ import {
1212
} from '@chakra-ui/react';
1313
import { keyframes } from '@emotion/react';
1414
import { 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

1720
import { RequireAuth } from '$components/auth/RequireAuth';
1821
import MainNavigation from '$components/MainNavigation';
@@ -25,6 +28,7 @@ import CollectionDetail from '$pages/CollectionDetail';
2528
import Sandbox from '$pages/Sandbox';
2629

2730
import { useKeycloak } from './auth/Context';
31+
import SmartLink from '$components/SmartLink';
2832

2933
const 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

Comments
 (0)