diff --git a/packages/website/components/Home/BlogSection.tsx b/packages/website/components/Home/BlogSection.tsx deleted file mode 100644 index aa8727fd5c..0000000000 --- a/packages/website/components/Home/BlogSection.tsx +++ /dev/null @@ -1,129 +0,0 @@ -const posts = [ - { - title: "ZK-Roller-Coaster #10", - href: "https://taiko.mirror.xyz/225yWAX3qFRNHSjNJ2gXGgkUbi-OGLhidBaNqbOW_Ds", - description: - "This is the 10th edition of ZK-Roller-Coaster where we track and investigate the most exciting, meaningful, and crazy ZK-stuff of the prior two weeks.", - date: "Aug 02, 2023", - datetime: "2023-08-02", - imageUrl: - "https://mirror-media.imgix.net/publication-images/nFoeprNnv0zOk8jUbmssg.png?height=2048&width=4096&h=2048&w=4096&auto=compress", - readingTime: "4 min", - author: { - name: "Lisa A.", - imageUrl: "https://avatars.githubusercontent.com/u/106527861?v=4", - }, - }, - { - title: - "Unlocking new scaling paradigms with Taiko Inception Layers: customized functions, compatibility, and trust-level", - href: "https://taiko.mirror.xyz/JMR41gK1TcTWa0NpwLfchJ-IJTtEX6RajqHF-A9qsZo", - description: - "TL;DR: In this article, we unpack the recently launched L3s on Taiko. We discuss the role of L3s in scaling Ethereum, the new use cases that L3s allow us to have, and some details on Taiko's specific approach.", - date: "Jul 26, 2023", - datetime: "2023-07-26", - imageUrl: - "https://mirror-media.imgix.net/publication-images/bTEeVmXOnxWKND7BCtQ9U.png?height=512&width=1024&h=512&w=1024&auto=compress", - readingTime: "4 min", - author: { - name: "Lisa A.", - imageUrl: "https://avatars.githubusercontent.com/u/106527861?v=4", - }, - }, - { - title: "ZK-Roller-Coaster #9", - href: "https://taiko.mirror.xyz/A7xzi9qGBUx9r8ZKpTJztu9GxDUNF9MaNtFPysjjpe0", - description: - "This is the 9th edition of ZK-Roller-Coaster where we track and investigate the most exciting, meaningful, and crazy ZK-stuff of the prior two weeks.", - date: "Jul 20, 2023", - datetime: "2023-07-20", - imageUrl: - "https://mirror-media.imgix.net/publication-images/05-g-CAHjCG7LnhaBwUQO.png?height=2048&width=4096&h=2048&w=4096&auto=compress", - readingTime: "4 min", - author: { - name: "Lisa A.", - imageUrl: "https://avatars.githubusercontent.com/u/106527861?v=4", - }, - }, -]; - -export function BlogSection() { - return ( -
-
-
-
-
-
-

- Latest blog posts -

-
- Check out the full blog at{" "} - - taiko.mirror.xyz - -
-
-
- {posts.map((post) => ( - -
-
- -
-
-
-
-
- {post.title} -
-
- {post.description} -
-
-
-
-
- {post.author.name} - -
-
-
- {post.author.name} -
-
- - - {post.readingTime} read -
-
-
-
-
-
- ))} -
-
-
- ); -} diff --git a/packages/website/components/Home/index.ts b/packages/website/components/Home/index.ts index bdbefaf8ba..a7925ddf0f 100644 --- a/packages/website/components/Home/index.ts +++ b/packages/website/components/Home/index.ts @@ -1,4 +1,3 @@ -export { BlogSection } from "./BlogSection"; export { CommunitySection } from "./CommunitySection"; export { FeaturesSection } from "./FeaturesSection"; export { Footer } from "./Footer"; diff --git a/packages/website/pages/index.mdx b/packages/website/pages/index.mdx index 643f647793..84304046cd 100644 --- a/packages/website/pages/index.mdx +++ b/packages/website/pages/index.mdx @@ -2,14 +2,8 @@ title: "Home" --- -import { - Hero, - FeaturesSection, - BlogSection, - CommunitySection, -} from "components/Home"; +import { Hero, FeaturesSection, CommunitySection } from "components/Home"; -