2025-03-06 09:30:53 +08:00
|
|
|
type TContents = {
|
2025-02-25 15:45:27 +07:00
|
|
|
id: number
|
|
|
|
|
createdAt: string
|
|
|
|
|
author: string
|
|
|
|
|
title: string
|
|
|
|
|
tags: string
|
|
|
|
|
category: string
|
|
|
|
|
status: string
|
|
|
|
|
}
|
|
|
|
|
|
2025-03-06 09:30:53 +08:00
|
|
|
export const CONTENTS: TContents[] = [
|
2025-02-25 15:45:27 +07:00
|
|
|
{
|
|
|
|
|
id: 1,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'John Doe',
|
|
|
|
|
title: 'Introduction to TypeScript',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Normal',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'Education',
|
|
|
|
|
status: 'Published',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 2,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'Jane Smith',
|
|
|
|
|
title: 'Advanced React Patterns',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Normal',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'Development',
|
|
|
|
|
status: 'Draft',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 3,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'Alice Johnson',
|
|
|
|
|
title: 'Understanding Redux',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Normal',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'Development',
|
|
|
|
|
status: 'Published',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 4,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'Bob Brown',
|
|
|
|
|
title: 'CSS Grid Layout',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Premium',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'Design',
|
|
|
|
|
status: 'Published',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 5,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'Charlie Davis',
|
|
|
|
|
title: 'Node.js Best Practices',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Premium',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'Development',
|
|
|
|
|
status: 'Published',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 6,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'Diana Evans',
|
|
|
|
|
title: 'GraphQL for Beginners',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Premium',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'Development',
|
|
|
|
|
status: 'Draft',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 7,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'Evan Harris',
|
|
|
|
|
title: 'Building RESTful APIs',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Premium',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'Development',
|
|
|
|
|
status: 'Published',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 8,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'Fiona Green',
|
|
|
|
|
title: 'Introduction to Docker',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Normal',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'DevOps',
|
|
|
|
|
status: 'Published',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 9,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'George King',
|
|
|
|
|
title: 'Microservices Architecture',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Normal',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'Development',
|
|
|
|
|
status: 'Draft',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
id: 10,
|
|
|
|
|
createdAt: '24/10/2024',
|
|
|
|
|
author: 'Hannah Lee',
|
|
|
|
|
title: 'Kubernetes Essentials',
|
2025-02-26 23:26:46 +07:00
|
|
|
tags: 'Normal',
|
2025-02-25 15:45:27 +07:00
|
|
|
category: 'DevOps',
|
|
|
|
|
status: 'Published',
|
|
|
|
|
},
|
|
|
|
|
]
|