File size: 538 Bytes
ab1b00d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 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>
);
}
|