add footer

This commit is contained in:
saml33 2023-09-29 22:14:40 +10:00
parent 4059cf734c
commit b136f2018c
2 changed files with 17 additions and 0 deletions

15
components/Footer.tsx Normal file
View File

@ -0,0 +1,15 @@
const Footer = () => {
return (
<div className="mt-6 flex justify-center rounded-lg border-2 border-th-fgd-1 bg-th-bkg-1 px-6 py-4">
<a
href="https://app.mango.markets"
rel="noopener noreferrer"
target="_blank"
>
<span className="font-bold">Powered by 🥭</span>
</a>
</div>
)
}
export default Footer

View File

@ -10,6 +10,7 @@ import { Transition } from '@headlessui/react'
import { useTranslation } from 'next-i18next'
import TermsOfUseModal from './modals/TermsOfUseModal'
import SunburstBackground from './SunburstBackground'
import Footer from './Footer'
export const sideBarAnimationDuration = 300
const termsLastUpdated = 1679441610978
@ -32,6 +33,7 @@ const Layout = ({ children }: { children: ReactNode }) => {
<TopBar />
<div className="mx-auto max-w-3xl px-6 pb-20 lg:px-12">
{children}
<Footer />
</div>
<DeployRefreshManager />
<TermsOfUse />