Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { FormattedMessage } from 'react-intl';
import Social from 'src/components/Social';

import packageInfo from 'package.json';
import PeerlistLaunch from './PeerlistLaunch';

const Footer = () => (
<footer className="flex items-center justify-center flex-col h-20 mt-8 w-full">
Expand All @@ -19,6 +20,7 @@ const Footer = () => (
</a>
</div>
<span className="text-xs mt-1 text-neutral-400 mb-8">v{packageInfo.version}</span>
<PeerlistLaunch fixed />
</footer>
);

Expand Down
2 changes: 2 additions & 0 deletions src/components/LearnFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import Social from 'src/components/Social';
import shortcuts from 'src/shortcuts';
import { InteractiveAreaContext } from 'src/context/InteractiveAreaContext';
import { useLanguageDirection } from 'src/utils/useLanguageDirection';
import PeerlistLaunch from './PeerlistLaunch';

const LearnFooter = () => {
const { lessonData, step, nextStep, prevStep, success, error } =
Expand Down Expand Up @@ -68,6 +69,7 @@ const LearnFooter = () => {
</div>
)}
</div>
<PeerlistLaunch fixed className="fixed left-2 bottom-20" />
</div>
);
};
Expand Down
Loading