summaryrefslogtreecommitdiff
path: root/app/src/components/footer.tsx
blob: d9d2511aaf2a093f9400db2bc8172093a1755a2d (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://sortug.com/"
          target="_blank"
          rel="noreferrer"
          className="mt-4 inline-block underline"
        >
          sortug.com
        </a>{" "}
        to learn more
      </div>
    </footer>
  );
};