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

16 lines
480 B
TypeScript

'use client'
import { motion } from 'framer-motion'
import SitesTable from '@/components/sites/SitesTable'
export default function SitesPage() {
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">Sites</h1>
<p className="g-page-sub">Auction sources and health status</p>
</motion.div>
<SitesTable />
</div>
)
}