import Head from 'next/head' import { useRouter } from 'next/router' import { ConnectButton } from '@/components/ConnectButton' import { ArticleEditor } from '@/components/ArticleEditor' function PublishHeader() { return ( Publish Article - zapwall4Science ) } function PublishHero({ onBack }: { onBack: () => void }) { return (

Publish New Article

Create an article with a free preview and paid full content

) } export default function PublishPage() { const router = useRouter() const handlePublishSuccess = () => { setTimeout(() => { void router.push('/') }, 2000) } return ( <>

zapwall4Science

{ void router.push('/') }} />
) }