()
| 118 | } |
| 119 | |
| 120 | const FooterBanner = () => { |
| 121 | return ( |
| 122 | <div className="flex w-full flex-col items-center justify-center rounded-xl border py-12 text-black dark:border-white/5"> |
| 123 | <div className="mb-6 text-center text-xl font-semibold tracking-tight dark:text-white"> |
| 124 | Get Premium Blocks and Templates for your next project on SyntaxUI Pro |
| 125 | </div> |
| 126 | <div> |
| 127 | <a |
| 128 | href="https://pro.syntaxui.com/" |
| 129 | target="_blank" |
| 130 | rel="noopener noreferrer" |
| 131 | className="rounded-lg bg-red-500 px-4 py-3 text-sm font-medium text-white hover:bg-red-500/90" |
| 132 | > |
| 133 | Get SyntaxUI Pro |
| 134 | </a> |
| 135 | </div> |
| 136 | </div> |
| 137 | ) |
| 138 | } |
| 139 | |
| 140 | export function Footer() { |
| 141 | const pathname = usePathname() |
nothing calls this directly
no outgoing calls
no test coverage detected