mirror of
https://github.com/logos-messaging/OpChan.git
synced 2026-01-08 07:43:08 +00:00
21 lines
556 B
TypeScript
21 lines
556 B
TypeScript
|
|
import React from 'react';
|
|
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">
|
|
<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;
|