import React, { useRef, useEffect } from 'react'; import { Link } from 'react-router-dom'; import { Container, Icon } from 'semantic-ui-react'; import { scene } from './spaceport/scene'; export const Footer = () => { const footerRef = useRef(); useEffect(() => { if (!footerRef.current) return; if (footerRef.current.clientWidth < 650) return if (window.location.hostname === 'my.protospace.ca') scene({ ref: footerRef }); }, [footerRef]); return (

site logo

Contact us:{' '} info@protospace.ca

Created and hosted by Protospace members for Protospace members.

Spaceport is free and open-source software.{' '} View the source code and license on GitHub. {' '}

© 2020-{new Date().getFullYear()} Calgary Protospace Ltd.

); };