iWeb / src /components /SiteFooter.jsx
ronylu's picture
Upload 2 files
ab1b00d verified
Raw
History Blame Contribute Delete
538 Bytes
import React from "react";
export default function SiteFooter() {
return (
<footer className="border-t border-neutral-200/70 bg-white">
<div className="mx-auto max-w-6xl px-4 py-10 text-sm text-neutral-600">
<div className="flex flex-col gap-2 md:flex-row md:items-center md:justify-between">
<p>© {new Date().getFullYear()} iStore</p>
<p className="text-neutral-500">
Demo storefront UI. Not affiliated with Apple Inc.
</p>
</div>
</div>
</footer>
);
}