chore: add client/src/components/layout/Footer.tsx

This commit is contained in:
notshop 2026-04-26 16:34:59 +00:00
parent eee8e16ca0
commit b01002e1ef

View file

@ -0,0 +1,9 @@
const storeName = import.meta.env.VITE_STORE_NAME || "NoShop";
export default function Footer() {
return (
<footer className="border-t border-border mt-16 py-8 text-center text-sm text-muted-foreground">
<p>© {new Date().getFullYear()} {storeName}. Powered by <a href="https://noshop.org" target="_blank" rel="noopener" className="hover:text-foreground underline underline-offset-2">NoShop</a> open source commerce.</p>
</footer>
);
}