16 lines
480 B
TypeScript
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>
|
|
)
|
|
}
|