File size: 5,178 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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
import { Blog_image_1 } from "../utils/index";
import { Blog_image_2 } from "../utils/index";
import { Blog_image_3 } from "../utils/index";
const blogPosts = [
{
id: 1,
category: "Uncategorized",
title: "A new beginning",
date: "October 3, 2016",
readTime: "2 min read",
author: "Admin", // Add the author field here
content: [
{
type: "image",
src: Blog_image_3,
alt: "Iniial Blog",
},
{
type: "text",
text: "Hello,",
},
{
type: "text",
text: "An exciting journey has begun today with the aim of producing interesting products in the Genomics world !",
},
// {
// type: "heading",
// text: "Key Concepts in React",
// },
// {
// type: "list",
// items: [
// "JSX syntax: JavaScript and HTML combined.",
// "Components: Building blocks of React applications.",
// "State: Managing data within components.",
// ],
// },
// {
// type: "twitterCard",
// quote: "The best way to predict the future is to invent it.",
// source: "— Alan Kay",
// },
// {
// type: "text",
// text: "React is a powerful tool that can simplify complex UI interactions, and with a little practice, you can build interactive web apps in no time.",
// },
// {
// type: "image",
// src: "https://via.placeholder.com/350x350",
// alt: "Placeholder Image",
// },
],
},
{
id: 2,
category: "Uncategorized",
title: "Careful curation is always needed to rely on published materials",
date: "August 31, 2017",
readTime: "2 min read",
author: "Admin", // Add the author field here
content: [
{
type: "image",
src: Blog_image_2,
alt: "The blog 2",
},
{
type: "link",
link: "https://www.thehindu.com/sci-tech/science/more-predatory-journals-get-indexed-in-pubmed/article19565833.ece",
text: "Pubmed and related manual curation"
},
// {
// type: "heading",
// text: "The Importance of Flexibility in Design",
// },
// {
// type: "list",
// items: [
// "Use fluid layouts that adjust to different screen sizes.",
// "Consider mobile-first design for optimal performance.",
// "Optimize images to load faster on mobile devices.",
// ],
// },
// {
// type: "text",
// text: "By using the right Uncategorizedniques, responsive design can make your website accessible to a wider audience.",
// },
],
},
{
id: 3,
category: "Uncategorized",
title: "The Indian Genomics Revolution",
date: "January 4, 2018",
readTime: "2 min read",
author: "Admin", // Add the author field here
content: [
{
type: "image",
src: Blog_image_1,
alt: "Blog_1 image",
},
// {
// type: "text",
// text: "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Augue ut lectus arcu bibendum at varius vel pharetra vel.",
// },
// {
// type: "blockquote",
// text: "Note: Some of the earlier articles may be amateur and have information that I wouldn’t necessarily put into an article on the subject if I wrote it today.",
// },
// {
// type: "heading",
// text: "Lorem ipsum dolor sit amet",
// },
// {
// type: "list",
// items: [
// "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
// "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
// "Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
// ],
// },
// {
// type: "twitterCard",
// quote: "When gone am I, the last of the Jedi will you be. The Force runs strong in your family. Pass on what you have learned.",
// source: "— Episode 6, Return of the Jedi",
// },
// {
// type: "code",
// code: `const btn = document.getElementById('btn');
// let count = 0;
// function render() {
// btn.innerText = \`Count: \${count}\`;
// }
// btn.addEventListener('click', () => {
// if (count < 10) {
// count += 1;
// render();
// }
// });`,
// },
{
type: "link",
link: "http://www.thehindu.com/opinion/lead/towards-a-genomics-revolution/article22361004.ece?utm_source=email&utm_medium=Email&utm_campaign=Newsletter",
text: "http://www.thehindu.com/opinion/lead/towards-a-genomics-revolution/article22361004.ece?utm_source=email&utm_medium=Email&utm_campaign=Newsletter",
},
// {
// type: "image",
// src: "https://via.placeholder.com/350x350",
// alt: "Placeholder Image",
// },
// {
// type: "image",
// src: "https://via.placeholder.com/350x350",
// alt: "Placeholder Image",
// },
],
},
];
export default blogPosts; |