chore: add client/src/components/layout/Footer.tsx
This commit is contained in:
parent
eee8e16ca0
commit
b01002e1ef
1 changed files with 9 additions and 0 deletions
9
client/src/components/layout/Footer.tsx
Normal file
9
client/src/components/layout/Footer.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue