2025-03-03 13:42:01 +07:00
|
|
|
type TBanner = {
|
2025-03-04 00:21:14 +07:00
|
|
|
id: number
|
2025-03-03 13:42:01 +07:00
|
|
|
urlImage: string
|
|
|
|
|
alt: string
|
|
|
|
|
link: string
|
2025-03-04 00:21:14 +07:00
|
|
|
status: 'active' | 'draft' | 'inactive'
|
|
|
|
|
createdAt?: string
|
2025-03-03 13:42:01 +07:00
|
|
|
}
|
2025-02-28 16:50:44 +07:00
|
|
|
|
2025-03-03 13:42:01 +07:00
|
|
|
export const BANNER: TBanner[] = [
|
|
|
|
|
{
|
2025-03-04 00:21:14 +07:00
|
|
|
id: 1,
|
2025-03-03 13:42:01 +07:00
|
|
|
urlImage: '/images/banner.png',
|
|
|
|
|
alt: 'banner',
|
|
|
|
|
link: '/category/spotlight',
|
2025-03-04 00:21:14 +07:00
|
|
|
status: 'active',
|
|
|
|
|
createdAt: '2021-08-01',
|
2025-03-03 13:42:01 +07:00
|
|
|
},
|
|
|
|
|
{
|
2025-03-04 00:21:14 +07:00
|
|
|
id: 2,
|
2025-03-03 13:42:01 +07:00
|
|
|
urlImage: 'https://placehold.co/1000x65.png',
|
|
|
|
|
alt: 'banner',
|
2025-03-04 00:21:14 +07:00
|
|
|
status: 'draft',
|
2025-03-03 13:42:01 +07:00
|
|
|
link: '/#',
|
2025-03-04 00:21:14 +07:00
|
|
|
createdAt: '2021-08-01',
|
2025-03-03 13:42:01 +07:00
|
|
|
},
|
|
|
|
|
{
|
2025-03-04 00:21:14 +07:00
|
|
|
id: 3,
|
|
|
|
|
urlImage: 'https://placehold.co/1000x65.png',
|
|
|
|
|
alt: 'banner',
|
|
|
|
|
status: 'draft',
|
|
|
|
|
link: '/#',
|
|
|
|
|
createdAt: '2021-08-01',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 4,
|
|
|
|
|
urlImage: '/images/banner.png',
|
|
|
|
|
alt: 'banner',
|
|
|
|
|
link: '/#',
|
|
|
|
|
status: 'active',
|
|
|
|
|
createdAt: '2021-08-01',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 5,
|
2025-03-03 13:42:01 +07:00
|
|
|
urlImage: '/images/banner.png',
|
|
|
|
|
alt: 'banner',
|
|
|
|
|
link: '/#',
|
2025-03-04 00:21:14 +07:00
|
|
|
status: 'inactive',
|
|
|
|
|
createdAt: '2021-08-01',
|
2025-03-03 13:42:01 +07:00
|
|
|
},
|
|
|
|
|
]
|