Add footer with donate link

This commit is contained in:
Misode
2022-06-06 03:32:59 +02:00
parent 986cca9191
commit 4379cb9bba
14 changed files with 85 additions and 9 deletions
+2 -1
View File
@@ -1,6 +1,6 @@
import { useMemo, useState } from 'preact/hooks'
import config from '../../config.json'
import { Btn, BtnMenu, ChangelogTag, GuideCard, TextInput } from '../components'
import { Btn, BtnMenu, ChangelogTag, Footer, GuideCard, TextInput } from '../components'
import { useLocale, useTitle, useVersion } from '../contexts'
import { useTags } from '../hooks/useTags'
import type { VersionId } from '../services'
@@ -72,5 +72,6 @@ export function Guides({}: Props) {
<GuideCard title={g.title} link={`/guides/${g.id}/`} tags={g.tags ?? []} versions={g.versions ?? []} activeTags={activeTags} toggleTag={toggleTag} />
)}
</div>
<Footer />
</main>
}