Skip to content

Commit

Permalink
add frontpage item for sdk, missing icon
Browse files Browse the repository at this point in the history
  • Loading branch information
dghelm committed Oct 25, 2024
1 parent 981e03c commit 10a40d8
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/assets/svgs/home/home-sdk.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/pages/en/home/Navigate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import StartSvg from "~/assets/svgs/home/home-start.svg?raw"
import DevelopSvg from "~/assets/svgs/home/home-develop.svg?raw"
import TechnologySvg from "~/assets/svgs/home/home-technology.svg?raw"
import LearnSvg from "~/assets/svgs/home/home-learn.svg?raw"
import SdkSvg from "~/assets/svgs/home/home-sdk.svg?raw"
import SectionHeader from "~/components/SectionHeader/index.astro"
const navList = [
Expand Down Expand Up @@ -31,6 +32,12 @@ const navList = [
content: "An introduction to the world of ZK and Scalability.",
link: "/en/learn",
},
{
icon: SdkSvg,
name: "SDK",
content: "Deploy a chain and own your blockspace.",
link: "/en/sdk",
},
]
---

Expand Down
7 changes: 7 additions & 0 deletions src/pages/es/home/Navigate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import StartSvg from "~/assets/svgs/home/home-start.svg?raw"
import DevelopSvg from "~/assets/svgs/home/home-develop.svg?raw"
import TechnologySvg from "~/assets/svgs/home/home-technology.svg?raw"
import LearnSvg from "~/assets/svgs/home/home-learn.svg?raw"
import SdkSvg from "~/assets/svgs/home/home-sdk.svg?raw"
import SectionHeader from "~/components/SectionHeader/index.astro"
const navList = [
Expand Down Expand Up @@ -31,6 +32,12 @@ const navList = [
content: "Una introducción al mundo de ZK y de la escalabilidad.",
link: "/es/learn",
},
{
icon: SdkSvg,
name: "SDK",
content: "Implementa una cadena y administra tu propio espacio de bloques.",
link: "/es/sdk",
},
]
---

Expand Down
7 changes: 7 additions & 0 deletions src/pages/tr/home/Navigate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import StartSvg from "~/assets/svgs/home/home-start.svg?raw"
import DevelopSvg from "~/assets/svgs/home/home-develop.svg?raw"
import TechnologySvg from "~/assets/svgs/home/home-technology.svg?raw"
import LearnSvg from "~/assets/svgs/home/home-learn.svg?raw"
import SdkSvg from "~/assets/svgs/home/home-sdk.svg?raw"
import SectionHeader from "~/components/SectionHeader/index.astro"
const navList = [
Expand Down Expand Up @@ -31,6 +32,12 @@ const navList = [
content: "ZK ve ölçeklenebilirliğin dünyasına giriş.",
link: "/tr/learn",
},
{
icon: SdkSvg,
name: "SDK",
content: "Bir zincir dağıtın ve blok alanınızı yönetin.",
link: "/tr/sdk",
},
]
---

Expand Down
7 changes: 7 additions & 0 deletions src/pages/zh/home/Navigate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import StartSvg from "~/assets/svgs/home/home-start.svg?raw"
import DevelopSvg from "~/assets/svgs/home/home-develop.svg?raw"
import TechnologySvg from "~/assets/svgs/home/home-technology.svg?raw"
import LearnSvg from "~/assets/svgs/home/home-learn.svg?raw"
import SdkSvg from "~/assets/svgs/home/home-sdk.svg?raw"
import SectionHeader from "~/components/SectionHeader/index.astro"
const navList = [
Expand Down Expand Up @@ -31,6 +32,12 @@ const navList = [
content: "介绍 ZK 和扩容的世界",
link: "/zh/learn",
},
{
icon: SdkSvg,
name: "SDK",
content: "部署链并拥有您的区块空间。",
link: "/zh/sdk",
},
]
---

Expand Down

0 comments on commit 10a40d8

Please sign in to comment.