Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zzq0826 committed Jul 3, 2024
1 parent 1fa78f5 commit 88c405d
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 26 deletions.
2 changes: 1 addition & 1 deletion src/pages/en/home/ConnectUs.astro
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const mediaList = [
{
icon: NoteSvg,
name: "Get in touch",
content: "Reach out directly if you need more support for hour project.",
content: "Reach out directly if you need more support for your project.",
link: "",
},
{
Expand Down
6 changes: 1 addition & 5 deletions src/pages/en/home/Navigate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@ const navList = [
---

<div class="navigate">
<SectionHeader title="Navigate the Docs" content="Start developing on Scroll today.">
<div slot="button" class="remix-callout">
<a href="">Get in touch</a>
</div>
</SectionHeader>
<SectionHeader title="Navigate the Docs" content="Start developing on Scroll today." />
<div class="navs">
{navList.map(({ icon, name, content, link }) => <NavCard icon={icon} name={name} content={content} link={link} />)}
</div>
Expand Down
6 changes: 5 additions & 1 deletion src/pages/en/home/QuickStart.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ const toolList = [
<SectionHeader
title="Developer Quickstart"
content="Start developing on Scroll with all of your favourite tools for building and testing smart contracts."
/>
>
<div slot="button" class="remix-callout">
<a href="">Get in touch</a>
</div>
</SectionHeader>
<div class="tools">
{
toolList.map(({ icon, name, quickstartAnchor, color }) => (
Expand Down
6 changes: 1 addition & 5 deletions src/pages/es/home/Navigate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@ const navList = [
---

<div class="navigate">
<SectionHeader title="Navega la Documentación" content="Comienza a desarrollar en Scroll hoy.">
<div slot="button" class="remix-callout">
<a href="">Ponte en contacto</a>
</div>
</SectionHeader>
<SectionHeader title="Navega la Documentación" content="Comienza a desarrollar en Scroll hoy." />
<div class="navs">
{navList.map(({ icon, name, content, link }) => <NavCard icon={icon} name={name} content={content} link={link} />)}
</div>
Expand Down
6 changes: 5 additions & 1 deletion src/pages/es/home/QuickStart.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ const toolList = [
<SectionHeader
title="Inicio rápido para Desarrolladores"
content="Comienza a construir en Scroll con todas tus herramientas favoritas de desarollo y de testing de Smart Contracts."
/>
>
<div slot="button" class="remix-callout">
<a href="">Ponte en contacto</a>
</div>
</SectionHeader>
<div class="tools">
{
toolList.map(({ icon, name, quickstartAnchor, color }) => (
Expand Down
7 changes: 1 addition & 6 deletions src/pages/tr/home/Navigate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,7 @@ const navList = [
---

<div class="navigate">
<SectionHeader title="Dokümantasyon'u gezin" content="Scroll'da geliştirmeye bugün başlayın.">
<div slot="button" class="remix-callout">
<a href="">İletişime geç</a>
</div>
</SectionHeader>

<SectionHeader title="Dokümantasyon'u gezin" content="Scroll'da geliştirmeye bugün başlayın." />
<div class="navs">
{navList.map(({ icon, name, content, link }) => <NavCard icon={icon} name={name} content={content} link={link} />)}
</div>
Expand Down
6 changes: 5 additions & 1 deletion src/pages/tr/home/QuickStart.astro
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ const toolList = [
<SectionHeader
title="Geliştiriciler İçin Hızlı Başlangıç"
content="Akıllı sözleşmeler oluştururken ve test ederken kullanmayı en sevdiğiniz tüm araçlar ile Scroll'da geliştirmeye başlayın."
/>
>
<div slot="button" class="remix-callout">
<a href="">İletişime geç</a>
</div>
</SectionHeader>
<div class="tools">
{
toolList.map(({ icon, name, quickstartAnchor, color }) => (
Expand Down
6 changes: 1 addition & 5 deletions src/pages/zh/home/Navigate.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,7 @@ const navList = [
---

<div class="navigate">
<SectionHeader title="文档导航" content="今天开始在 Scroll 上进行开发">
<div slot="button" class="remix-callout">
<a href="">获取支持</a>
</div>
</SectionHeader>
<SectionHeader title="文档导航" content="今天开始在 Scroll 上进行开发" />
<div class="navs">
{navList.map(({ icon, name, content, link }) => <NavCard icon={icon} name={name} content={content} link={link} />)}
</div>
Expand Down
6 changes: 5 additions & 1 deletion src/pages/zh/home/QuickStart.astro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,11 @@ const toolList = [
---

<div>
<SectionHeader title="开发者快速入门" content="开始使用您喜爱的工具在 Scroll 上进行智能合约的构建和测试" />
<SectionHeader title="开发者快速入门" content="开始使用您喜爱的工具在 Scroll 上进行智能合约的构建和测试">
<div slot="button" class="remix-callout">
<a href="">获取支持</a>
</div>
</SectionHeader>
<div class="tools">
{
toolList.map(({ icon, name, quickstartAnchor, color }) => (
Expand Down

0 comments on commit 88c405d

Please sign in to comment.