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

Commit 3f78114

Browse files
committed
chore: deprecation notice
1 parent 21c99d3 commit 3f78114

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
> [!CAUTION]
2+
⛔️ DEPRECATED⛔️ <br/>
3+
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
4+
15
# Caravan - Stateless Multisig Coordinator
26

37
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)

src/components/App.tsx

+10
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import Navbar from "./Navbar";
2323
import Footer from "./Footer";
2424
import ErrorBoundary from "./ErrorBoundary";
2525
import ErrorNotification from "./ErrorNotification";
26+
import { Alert, Box } from "@mui/material";
2627

2728
const App = () => (
2829
<ThemeProvider theme={theme}>
@@ -32,6 +33,15 @@ const App = () => (
3233
<Router basename="/">
3334
<Container maxWidth={false} sx={{ maxWidth: "1280px" }}>
3435
<Navbar />
36+
<Box mt={2}>
37+
<Alert variant="filled" severity="warning">
38+
This version of Caravan is being deprecated. The project has
39+
been moved to{" "}
40+
<a href="https://github.com/caravan-bitcoin/caravan">
41+
@caravan/coordinator
42+
</a>
43+
</Alert>
44+
</Box>
3545
<ErrorBoundary>
3646
<Switch>
3747
<Route path="/test" component={TestSuiteRun} />

0 commit comments

Comments
 (0)