Skip to content

Commit

Permalink
Merge branch 'eth_fix' of github.com:taikochain/taiko-mono into eth_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberhorsey committed Dec 23, 2022
2 parents 7b9deb8 + 3584706 commit 0c297be
Showing 1 changed file with 26 additions and 32 deletions.
58 changes: 26 additions & 32 deletions packages/website/src/components/BlogSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,51 +2,48 @@ import React from "react";

const posts = [
{
title: "Taiko Is Fully Open Source",
href: "https://mirror.xyz/labs.taiko.eth/31vzkwgNaKNrze0oIv_wTKCw6Tha8OYQ6ffrquS3XUg",
category: { name: "Article" },
title: "Rollup Decentralization",
href: "https://mirror.xyz/labs.taiko.eth/sxR3iKyD-GvTuyI9moCg4_ggDI4E4CqnvhdwRq5yL0A",
description:
'Taiko is fully open source -- you can view all the code on our GitHub. By "open source" we mean free to see the source and modify it.',
date: "Dec 01, 2022",
datetime: "2022-12-01",
"This post explores definitions and high-level ideas of rollup decentralization. It does not cover deep technical detail about decentralizing rollup implementations.",
date: "Dec 20, 2022",
datetime: "2022-12-20",
imageUrl:
"https://mirror-media.imgix.net/publication-images/h-KI5JueXbaUalAJeiMvA.png?height=1024&width=2048&h=1024&w=2048&auto=compress",
readingTime: "4 min",
"https://mirror-media.imgix.net/publication-images/NTeYUqYqHo4NqrRGJHvfO.png?height=512&width=1024&h=512&w=1024&auto=compress",
readingTime: "9 min",
author: {
name: "d1onys1us",
imageUrl: "https://avatars.githubusercontent.com/u/13951458?v=4",
name: "finestone",
imageUrl: "https://avatars.githubusercontent.com/u/36642873?v=4",
},
},
{
title: "Community Update #2",
href: "https://mirror.xyz/labs.taiko.eth/JdMMaBLOtK3Hk_SGZy_c9WFEnn1jDtOpfeXVHxJAtMU",
category: { name: "Community Update" },
title: "Taiko Community Update #3",
href: "https://mirror.xyz/labs.taiko.eth/8E_7fjFNFjY7dIGAppqaNyuM-1QXp78AekXMA9--q6o",
description:
"Hey everyone 👋, we want to update you on the progress we’ve made since our last community update.",
date: "Nov 24, 2022",
datetime: "2022-11-24",
"Taiko Community Update #3 has arrived 🥁 We do these to provide transparency into the progress we’ve made since our last community update.",
date: "Dec 08, 2022",
datetime: "2022-12-08",
imageUrl:
"https://mirror-media.imgix.net/publication-images/hcstqDARznViEZh0CXJ-T.png?height=960&width=1920&h=960&w=1920&auto=compress",
"https://mirror-media.imgix.net/publication-images/FaV63QrEdHnxGHdHMFw8p.png?height=960&width=1920&h=960&w=1920&auto=compress",
readingTime: "2 min",
author: {
name: "Taiko Labs",
imageUrl: "./img/Taiko_Logo_Fluo-on-Black.svg",
name: "d1onys1us",
imageUrl: "https://avatars.githubusercontent.com/u/13951458?v=4",
},
},
{
title: "The Type 1 ZK-EVM",
href: "https://mirror.xyz/labs.taiko.eth/w7NSKDeKfJoEy0p89I9feixKfdK-20JgWF9HZzxfeBo",
category: { name: "Article" },
title: "Taiko Is Fully Open Source",
href: "https://mirror.xyz/labs.taiko.eth/31vzkwgNaKNrze0oIv_wTKCw6Tha8OYQ6ffrquS3XUg",
description:
"Taiko is building a Type 1 (Ethereum-equivalent) ZK-EVM. What benefits come from using a Type 1 ZK-EVM? Let’s learn together in this post.",
date: "Nov 15, 2022",
datetime: "2022-11-15",
'Taiko is fully open source -- you can view all the code on our GitHub. By "open source" we mean free to see the source and modify it.',
date: "Dec 01, 2022",
datetime: "2022-12-01",
imageUrl:
"https://mirror-media.imgix.net/publication-images/3Dn5g9BMMfwPnMOi-IIEK.png?height=512&width=1024&h=512&w=1024&auto=compress",
readingTime: "6 min",
"https://mirror-media.imgix.net/publication-images/h-KI5JueXbaUalAJeiMvA.png?height=1024&width=2048&h=1024&w=2048&auto=compress",
readingTime: "4 min",
author: {
name: "Taiko Labs",
imageUrl: "./img/Taiko_Logo_Fluo-on-Black.svg",
name: "d1onys1us",
imageUrl: "https://avatars.githubusercontent.com/u/13951458?v=4",
},
},
];
Expand Down Expand Up @@ -88,9 +85,6 @@ export default function BlogSection(): JSX.Element {
</div>
<div className="flex flex-1 flex-col justify-between bg-white p-6 dark:bg-neutral-800">
<div className="flex-1">
<div className="text-sm font-medium">
<a>{post.category.name}</a>
</div>
<a href={post.href} target="_blank" className="mt-2 block">
<div className="text-xl font-semibold text-neutral-900 dark:text-neutral-200">
{post.title}
Expand Down

0 comments on commit 0c297be

Please sign in to comment.