| 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> | |
| ); | |
| } | |