summaryrefslogtreecommitdiff
path: root/src/components/footer.tsx
blob: 8cfd9c8978c5b0b6ea1e79328ff4ce2f0615b0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const Footer = () => {
  return (
    <footer className="p-6 lg:fixed lg:bottom-0 lg:left-0">
      <div>
        visit{' '}
        <a
          href="https://waku.gg/"
          target="_blank"
          rel="noreferrer"
          className="mt-4 inline-block underline"
        >
          waku.gg
        </a>{' '}
        to learn more
      </div>
    </footer>
  );
};