mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-08-25 06:39:53 -04:00

* rebranding: Change github/UnstoppableSwap to github/eigenwallet * rebranding: change Unstoppable -> eigenwallet in a bunch of places * rebranding: change tauri icon
21 lines
646 B
JavaScript
21 lines
646 B
JavaScript
import Logo from "./components/Logo";
|
|
|
|
export default {
|
|
logo: <Logo />,
|
|
project: {
|
|
link: "https://github.com/eigenwallet/core",
|
|
},
|
|
head: (
|
|
<>
|
|
<title>eigenwallet Docs</title>
|
|
<meta name="description" content="eigenwallet Docs" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" href="/favicon.ico" sizes="any" />
|
|
<link rel="icon" href="/icon.svg" type="image/svg+xml" />
|
|
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
|
|
<link rel="manifest" href="/manifest.webmanifest" />
|
|
</>
|
|
),
|
|
primaryHue: 14.3,
|
|
primarySaturation: 90.68,
|
|
};
|