mirror of
https://github.com/logos-messaging/OpChan.git
synced 2026-01-02 12:53:10 +00:00
* chore: move to /app * chore: setup workspace * chore: move lib * wip * fix: build and memory leak * fix: app content hydration for message manager * fix: non-ens wallets engagement, syncing hydration * chore: improvements * chore: IdentityContext * chore: time range for sds store query to 1 month * chore: remove client prop * remove env logs * wip * FIX HYDRATION * fix: message signing * chore: rename providers * fix: hydration interface * state consistentcy * fix: ens * chore: minimal docs * chore: update readme * local build
28 lines
807 B
HTML
28 lines
807 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>OpChan - Decentralized Forum</title>
|
|
<meta
|
|
name="description"
|
|
content="A decentralized forum built on Bitcoin Ordinals and Waku protocol"
|
|
/>
|
|
<meta name="author" content="OpChan Team" />
|
|
|
|
<meta property="og:title" content="OpChan - Decentralized Forum" />
|
|
<meta
|
|
property="og:description"
|
|
content="A decentralized forum built on Bitcoin Ordinals and Waku protocol"
|
|
/>
|
|
<meta property="og:type" content="website" />
|
|
|
|
<meta name="twitter:card" content="summary_large_image" />
|
|
</head>
|
|
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|