temp solution

This commit is contained in:
rcarteraz
2024-08-19 13:20:56 -07:00
parent 2b34d78a86
commit 4c4be2e18f
2 changed files with 37 additions and 0 deletions

View File

@@ -5,6 +5,7 @@ import { DeviceSelector } from "@components/DeviceSelector.js";
import { DialogManager } from "@components/Dialog/DialogManager.js";
import { NewDeviceDialog } from "@components/Dialog/NewDeviceDialog.js";
import { Toaster } from "@components/Toaster.js";
import Footer from "@components/UI/Footer.js";
import { ThemeController } from "@components/generic/ThemeController.js";
import { useAppStore } from "@core/stores/appStore.js";
import { useDeviceStore } from "@core/stores/deviceStore.js";
@@ -44,6 +45,7 @@ export const App = (): JSX.Element => {
)}
</div>
</div>
<Footer />
</div>
</DeviceWrapper>
</MapProvider>

View File

@@ -0,0 +1,35 @@
import React from "react";
const Footer = () => {
return (
<footer
className="flex justify-center p-4"
style={{
backgroundColor: "var(--backgroundPrimary)",
color: "var(--textPrimary)",
}}
>
<p>
<a
href="https://vercel.com/?utm_source=meshtastic&utm_campaign=oss"
className="hover:underline"
style={{ color: "var(--link)" }}
>
Powered by Vercel
</a>{" "}
| Meshtastic® is a registered trademark of Meshtastic LLC. |
<a
href="/docs/legal"
className="hover:underline"
style={{ color: "var(--link)" }}
>
{" "}
Legal Information
</a>
.
</p>
</footer>
);
};
export default Footer;