Why We Built This
Copying blog content to ChatGPT 10x times a day? There's a better way.
Developers use AI tools daily. Note-taking apps need raw markdown. We needed one-click solution.
The Solution
'use client'
export function CopyRawContent({ rawContent }: { rawContent: string }) {
const [copied, setCopied] = useState(false)
const handleCopy = async () => {
await navigator.clipboard.writeText(rawContent)
setCopied(true)
setTimeout(() => setCopied(false), 2000)
}
return <button onClick={handleCopy}>{copied ? 'Copied!' : 'Copy Page MD'}</button>
}
Key features: Visual feedback, Clipboard API, timer cleanup, accessible.
Use Cases
- Code Review → Copy → ChatGPT → "Review this"
- Learning → Copy → Claude → "Explain simpler"
- Knowledge Base → Copy → Obsidian/Notion
Try It
Scroll to top, click "Copy Page MD", paste to your AI tool!