Footer
The Footer component renders the application footer, which contains the links to reach specific sections, and the application copyright.
Usage
 import React from 'react';
 import {SCContextProvider} from '@selfcommunity/react-core';
 import {Footer} from '@selfcommunity/react-ui';
 function App() {
   const conf = {
     portal: '<community-path>',
     session: {
       type: 'OAuth',
       token: '<community-token>',
       refreshToken: '<community-refresh-token>',
       refreshTokenEndpoint: '<community-refresh-endpoint>',
     },
   };
   return (
     <SCContextProvider conf={conf}><Footer /></SCContextProvider>
   );
 }