diff --git a/src/app/components/Footer.tsx b/src/app/components/Footer.tsx new file mode 100644 index 00000000..47aaf959 --- /dev/null +++ b/src/app/components/Footer.tsx @@ -0,0 +1,23 @@ +import { Octicon } from '.' +import { useLocale } from '../contexts' + +interface Props { + donate?: boolean, +} +export function Footer({ donate }: Props) { + const { locale } = useLocale() + + return +} diff --git a/src/app/components/Octicon.tsx b/src/app/components/Octicon.tsx index 9404a34c..5acff40c 100644 --- a/src/app/components/Octicon.tsx +++ b/src/app/components/Octicon.tsx @@ -20,6 +20,7 @@ export const Octicon = { file_directory: , gear: , globe: , + heart: , history: , info: , issue_opened: , diff --git a/src/app/components/index.ts b/src/app/components/index.ts index d858264a..28e59053 100644 --- a/src/app/components/index.ts +++ b/src/app/components/index.ts @@ -3,6 +3,7 @@ export * from './Btn' export * from './BtnInput' export * from './BtnMenu' export * from './ErrorPanel' +export * from './Footer' export * from './forms' export * from './generator' export * from './Giscus' diff --git a/src/app/pages/Category.tsx b/src/app/pages/Category.tsx index d9a1474e..555502e6 100644 --- a/src/app/pages/Category.tsx +++ b/src/app/pages/Category.tsx @@ -1,5 +1,5 @@ import config from '../../config.json' -import { ToolCard } from '../components' +import { Footer, ToolCard } from '../components' import { useLocale, useTitle } from '../contexts' import { cleanUrl } from '../Utils' @@ -16,5 +16,6 @@ export function Category({ category }: Props) { )} +