abbashkyt-creator 7d8ce0e322 V0.1
2026-03-14 04:02:22 +03:00

16 lines
484 B
TypeScript

'use client'
import { motion } from 'framer-motion'
import AILogFeed from '@/components/ai-log/AILogFeed'
export default function AILogPage() {
return (
<div className="space-y-5">
<motion.div initial={{ opacity: 1, y: -8 }} animate={{ opacity: 1, y: 0 }} transition={{ duration: 0.4 }}>
<h1 className="g-page-title">AI Log</h1>
<p className="g-page-sub">Live AI filter decisions and responses</p>
</motion.div>
<AILogFeed />
</div>
)
}