| import { creativeArtsBlogs } from './creative-arts'; | |
| import { industryBlogs } from './industry'; | |
| import { lifestyleBlogs } from './lifestyle'; | |
| import { societyBlogs } from './society'; | |
| import { technologyBlogs } from './technology'; | |
| export const curatedBlogs = { | |
| ...lifestyleBlogs, | |
| ...technologyBlogs, | |
| ...creativeArtsBlogs, | |
| ...societyBlogs, | |
| ...industryBlogs, | |
| }; | |
| export type CuratedBlog = { | |
| feed_ID: number; | |
| site_ID: number; | |
| site_URL: string; | |
| site_name: string; | |
| }; | |
| export type CuratedBlogsList = Record< string, CuratedBlog[] >; | |