Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

Commit

Permalink
chore: deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
bucko13 committed Feb 26, 2024
1 parent 21c99d3 commit 3f78114
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
> [!CAUTION]
⛔️ DEPRECATED⛔️ <br/>
This repository has been deprecated and moved to a new location. Active maintenance on caravan code is now hosted at https://github.com/caravan-bitcoin/caravan

# Caravan - Stateless Multisig Coordinator

[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
Expand Down
10 changes: 10 additions & 0 deletions src/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import Navbar from "./Navbar";
import Footer from "./Footer";
import ErrorBoundary from "./ErrorBoundary";
import ErrorNotification from "./ErrorNotification";
import { Alert, Box } from "@mui/material";

const App = () => (
<ThemeProvider theme={theme}>
Expand All @@ -32,6 +33,15 @@ const App = () => (
<Router basename="/">
<Container maxWidth={false} sx={{ maxWidth: "1280px" }}>
<Navbar />
<Box mt={2}>
<Alert variant="filled" severity="warning">
This version of Caravan is being deprecated. The project has
been moved to{" "}
<a href="https://github.com/caravan-bitcoin/caravan">
@caravan/coordinator
</a>
</Alert>
</Box>
<ErrorBoundary>
<Switch>
<Route path="/test" component={TestSuiteRun} />
Expand Down

0 comments on commit 3f78114

Please sign in to comment.