()
| 109 | } |
| 110 | |
| 111 | function SmallPrint() { |
| 112 | return ( |
| 113 | <div className="xborder-t xborder-zinc-900/5 flex flex-col items-center justify-between gap-5 pt-8 sm:flex-row dark:border-white/5"> |
| 114 | <p className="text-xs text-zinc-600 dark:text-zinc-400"> |
| 115 | © Copyright {new Date().getFullYear()}. All rights |
| 116 | reserved. |
| 117 | </p> |
| 118 | <div className="flex gap-4"> |
| 119 | <Socials /> |
| 120 | {/* <SocialLink href="#" icon={DiscordIcon}> |
| 121 | Join our Discord server |
| 122 | </SocialLink> */} |
| 123 | </div> |
| 124 | </div> |
| 125 | ); |
| 126 | } |
| 127 | |
| 128 | export function Footer() { |
| 129 | return ( |
nothing calls this directly
no outgoing calls
no test coverage detected