pantry-tracker / app / components / Layout / Footer.tsx
Footer.tsx
Raw
import React from "react";

export default function Footer() {
  return (
    <footer>
      <div className="w-full max-w-screen-xl mx-auto p-4 md:py-8">
        <span className="block text-sm text-gray-400 sm:text-center dark:text-gray-400">
          © 2024 <a href="/" className="hover:underline">Pantry.io</a>. All Rights Reserved.
        </span>
      </div>
    </footer>
  );
}