import { PlusGrid, PlusGridItem, PlusGridRow } from "./plus-grid";
function SitemapHeading({ children }: { children: React.ReactNode }) {
return
{children}
;
}
function SitemapLinks({ children }: { children: React.ReactNode }) {
return ;
}
function SitemapLink(props: React.ComponentPropsWithoutRef<"a">) {
return (
);
}
function Sitemap() {
return (
<>
Product
Documentation
Chrome Extension
iOS Shortcut
Community
Discord
Report Issue
Get Help
Legal
Terms of Service
Privacy Policy
>
);
}
function SocialIconX(props: React.ComponentPropsWithoutRef<"svg">) {
return (
);
}
function SocialIconGitHub(props: React.ComponentPropsWithoutRef<"svg">) {
return (
);
}
function SocialLinks() {
return (
<>
>
);
}
function Copyright() {
return (
© {new Date().getFullYear()} Supermemory, Inc.
);
}
export default function Footer() {
return (
);
}