feat: add FAQ page

This commit is contained in:
Tom (plebeius.eth)
2024-07-02 13:32:50 +02:00
parent 3730e4b4c1
commit 66cc23c404
10 changed files with 288 additions and 14 deletions
+2 -10
View File
@@ -133,7 +133,7 @@ const downloadAppLink = (() => {
const isElectron = window.isElectron === true;
const commitRef = process.env.REACT_APP_COMMIT_REF;
const Footer = () => {
export const Footer = () => {
const { t } = useTranslation();
return (
<>
@@ -151,15 +151,7 @@ const Footer = () => {
</li>
)}
<li>
<Link
to='/faq'
onClick={(e) => {
e.preventDefault();
alert('work in progress');
}}
>
FAQ
</Link>
<Link to='/faq'>FAQ</Link>
</li>
<li>
<a href='https://t.me/plebbit' target='_blank' rel='noopener noreferrer'>
+1 -1
View File
@@ -1 +1 @@
export { HomeLogo, default } from './home';
export { HomeLogo, Footer, default } from './home';