|
|
|
@ -1,9 +1,13 @@ |
|
|
|
import React from "react"; |
|
|
|
|
|
|
|
const Footer = () => { |
|
|
|
export interface FooterProps |
|
|
|
extends React.HTMLAttributes<HTMLElement> {} |
|
|
|
|
|
|
|
const Footer = React.forwardRef<HTMLElement, FooterProps>( |
|
|
|
({className, ...props}, ref) => { |
|
|
|
return ( |
|
|
|
<footer |
|
|
|
className="flex justify-center p-4" |
|
|
|
className={`flex flex- justify-center pl-2 pr-2 pb-2 ${className}`} |
|
|
|
style={{ |
|
|
|
backgroundColor: "var(--backgroundPrimary)", |
|
|
|
color: "var(--textPrimary)", |
|
|
|
@ -18,18 +22,17 @@ const Footer = () => { |
|
|
|
Powered by ▲ Vercel |
|
|
|
</a>{" "} |
|
|
|
| Meshtastic® is a registered trademark of Meshtastic LLC. | |
|
|
|
{" "} |
|
|
|
<a |
|
|
|
href="https://meshtastic.org/docs/legal" |
|
|
|
className="hover:underline" |
|
|
|
style={{ color: "var(--link)" }} |
|
|
|
> |
|
|
|
{" "} |
|
|
|
Legal Information |
|
|
|
</a> |
|
|
|
. |
|
|
|
</p> |
|
|
|
</footer> |
|
|
|
); |
|
|
|
}; |
|
|
|
}); |
|
|
|
|
|
|
|
export default Footer; |
|
|
|
|