OpChan/app/src/pages/PostPage.tsx
Danish Arora cca6299eb5
feat: library (#26)
* 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
2025-09-25 21:52:40 +05:30

19 lines
534 B
TypeScript

import Header from '@/components/Header';
import PostDetail from '@/components/PostDetail';
const PostPage = () => {
return (
<div className="min-h-screen flex flex-col bg-cyber-dark text-white">
<Header />
<main className="flex-1 pt-16">
<PostDetail />
</main>
<footer className="border-t border-cyber-muted py-4 text-center text-xs text-cyber-neutral">
<p>OpChan - A decentralized forum built on Waku & Bitcoin Ordinals</p>
</footer>
</div>
);
};
export default PostPage;