visio / app /qa /page.tsx
mrlectus's picture
Upload 54 files
adf1923 verified
raw
history blame contribute delete
291 Bytes
import QAAssistant from '../../components/QAAssistant'
export default function QAPage() {
return (
<div className="space-y-6 p-10">
<h1 className="text-4xl font-bold text-center text-blue-100 animate-pulse">Q&A</h1>
<QAAssistant />
</div>
)
}