16 lines
500 B
TypeScript
16 lines
500 B
TypeScript
'use client'
|
|
import { motion } from 'framer-motion'
|
|
import ListingsTable from '@/components/listings/ListingsTable'
|
|
|
|
export default function ListingsPage() {
|
|
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">Listings</h1>
|
|
<p className="g-page-sub">Captured lots from all target sites</p>
|
|
</motion.div>
|
|
<ListingsTable />
|
|
</div>
|
|
)
|
|
}
|