diff --git a/README.md b/README.md index d9cb10b..1c27165 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,9 @@ Welcome to the Irys documentation repository. These docs are built using [Nextra ## What is Irys? -Irys is the first datachain that combines storage and execution, enabling Programmable Data and simplifying the building of fully decentralized applications. +Irys is the first L1 programmable datachain, designed to optimize data storage and execution. By combining storage and execution, it significantly increases the usefulness of blockspace, enabling a wider range of web services to come onchain that aren’t possible right now. + +Irys empowers developers to create and innovate like never before. With Irys, builders can eliminate dependencies, integrate efficient onchain data, and unlock new possibilities for dynamic, real-time applications—all within a unified platform. ### Storage diff --git a/pages/404.tsx b/pages/404.tsx index 42c2a7f..80b28ae 100644 --- a/pages/404.tsx +++ b/pages/404.tsx @@ -6,6 +6,7 @@ type Item = { }; type Section = { + id: string; title: string; css: string; items: Item[]; @@ -19,6 +20,7 @@ const arweaveToolsBaseUrl = "https://arweave-tools.irys.xyz"; const NotFound = (props: Props) => { const devToolsForArweave: Section[] = [ { + id: "overview", title: "Overview", css: "row-span-6", items: [ @@ -38,6 +40,7 @@ const NotFound = (props: Props) => { ], }, { + id: "sdk", title: "SDK", css: "row-span-6", items: [ @@ -57,6 +60,7 @@ const NotFound = (props: Props) => { ], }, { + id: "cli", title: "CLI", css: "row-span-6", items: [ @@ -65,6 +69,7 @@ const NotFound = (props: Props) => { ], }, { + id: "querying", title: "QUERYING", css: "row-span-6", items: [ @@ -77,6 +82,7 @@ const NotFound = (props: Props) => { const irysProtocol: Section[] = [ { + id: "learn-about-irys", title: "LEARN ABOUT IRYS", css: "row-span-6", items: [ @@ -87,6 +93,7 @@ const NotFound = (props: Props) => { ], }, { + id: "why-build-on-irys", title: "WHY BUILD ON IRYS", css: "row-span-6", items: [ @@ -96,6 +103,7 @@ const NotFound = (props: Props) => { ], }, { + id: "mining-on-irys", title: "MINING ON IRYS", css: "row-span-6", items: [ @@ -105,6 +113,7 @@ const NotFound = (props: Props) => { ], }, { + id: "protocol", title: "PROTOCOL", css: "row-span-6", items: [ @@ -137,20 +146,19 @@ const NotFound = (props: Props) => {