"use client";

type AuthFooterProps = {};
export default function AuthFooter({}: AuthFooterProps) {
  return (
    <footer className="bg-white shadow px-8 py-2">
      <div className="flex w-full justify-between text-neutral-500 text-sm">
        <p></p>
        <p>
          <span className="text-blue-500">FGA Domains</span> &copy;{" "}
          {new Date().getFullYear()}
        </p>
      </div>
    </footer>
  );
}
