File size: 921 Bytes
8b105ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;