diff --git a/src/components/layout.tsx b/src/components/layout.tsx index 8fd67335be76..d35d4e30237c 100644 --- a/src/components/layout.tsx +++ b/src/components/layout.tsx @@ -30,6 +30,7 @@ const TraceAlert = lazy(() => import("./shell/TraceAlert")) const WebDiagnostics = lazy(() => import("./shell/WebDiagnostics")) const WebCam = lazy(() => import("./ui/WebCam")) const PassiveAlert = lazy(() => import("./shell/PassiveAlert")) +const MigrationAlert = lazy(() => import("./shell/MigrationAlert")) const YouTubePlayer = lazy(() => import("./youtube/YouTubePlayer")) const PREFIX = "Layout" @@ -251,6 +252,9 @@ function LayoutWithContext(props: LayoutProps) { const InnerMainSection = () => ( <> + + + diff --git a/src/components/shell/MigrationAlert.tsx b/src/components/shell/MigrationAlert.tsx new file mode 100644 index 000000000000..67e65127f5b3 --- /dev/null +++ b/src/components/shell/MigrationAlert.tsx @@ -0,0 +1,27 @@ +import { Box } from "@mui/material" +import { AlertTitle } from "@mui/material" +import React from "react" +import Alert from "../ui/Alert" + +export default function MigrationAlert() { + return ( + + 📢 Important: Jacdac has moved! + The Jacdac project has moved to{" "} + + https://github.com/jacdac + + . Please update your bookmarks and references to point to the new location. + + ) +} \ No newline at end of file