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