i-darrshan's picture
initial push of the update
8b105ad
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;