diff --git a/components/Footer.tsx b/components/Footer.tsx new file mode 100644 index 0000000..fc363ad --- /dev/null +++ b/components/Footer.tsx @@ -0,0 +1,15 @@ +const Footer = () => { + return ( +
+ + Powered by 🥭 + +
+ ) +} + +export default Footer diff --git a/components/Layout.tsx b/components/Layout.tsx index 6b733d7..12be70a 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -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 }) => {
{children} +