import { Blog_image_1 } from "../utils"; | |
import { Blog_image_2 } from "../utils"; | |
import { Blog_image_3 } from "../utils"; | |
const blogs = [ | |
{ | |
id: 1, | |
title: "A new beginning", | |
author: "Admin", | |
date: "October 3, 2016", | |
readTime: 2, | |
excerpt: "The beginning of an exciting journey towards the era of complete genomic knowledge....", | |
imageUrl: Blog_image_3 | |
}, | |
{ | |
id: 2, | |
title: "Careful curation is always needed!!", | |
author: "Admin", | |
date: "August 31, 2017", | |
readTime: 2, | |
excerpt: "Pubmed and related manual curation.....", | |
imageUrl: Blog_image_2 | |
}, | |
{ | |
id: 3, | |
title: "The Indian Genomics Revolution", | |
author: "Admin", | |
date: "January 4, 2018", | |
readTime: 2, | |
excerpt: "India has the scientific resources for genetic research", | |
imageUrl: Blog_image_1 | |
}, | |
]; | |
export default blogs; |