Skip to content

Commit 45d4c53

Browse files
committed
🚧 what is nullstack
1 parent 5f5d94e commit 45d4c53

File tree

8 files changed

+30
-2
lines changed

8 files changed

+30
-2
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: What is Nullstack?
3+
description: TODO
4+
---
5+
6+
TODO
7+
8+
## Next step
9+
10+
⚔ Learn [how to create a nullstack project](/getting-started).

i18n/en-US/components/Documentation.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
topics:
22
- title: "Core concepts"
33
links:
4+
- title: "What is Nullstack?"
5+
href: "/what-is-nullstack"
46
- title: "Getting started"
57
href: "/getting-started"
68
- title: "Renderable components"

i18n/en-US/components/Header.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ home:
22
title: "Nullstack"
33
href: "/"
44
links:
5+
- title: "What is Nullstack?"
6+
href: "/what-is-nullstack"
57
- title: "Documentation"
68
href: "/getting-started"
79
- title: "Contributors"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
title: O que é Nullstack?
3+
description: TODO
4+
---
5+
6+
TODO
7+
8+
## Próximos passos
9+
10+
⚔ Aprenda [como criar um projeto em nullstack](pt-br/comecando).

i18n/pt-BR/components/Documentation.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ tagline: "Siga esses passos e se torne um desenvolvedor full-stack javascript!"
55
topics:
66
- title: "Principais conceitos"
77
links:
8+
- title: "O que é Nullstack?"
9+
href: "/pt-br/o-que-e-nullstack"
810
- title: "Começando"
911
href: "/pt-br/comecando"
1012
- title: "Componentes renderizáveis"

i18n/pt-BR/components/Header.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ home:
22
title: "Nullstack"
33
href: "/pt-br"
44
links:
5+
- title: "O que é Nullstack?"
6+
href: "/pt-br/o-que-e-nullstack"
57
- title: "Documentação"
68
href: "/pt-br/comecando"
79
- title: "Contribuidores"

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ worker.preload = [
1616
'/arrow.webp',
1717
'/stars.webp',
1818
'/footer.webp',
19+
'/what-is-nullstack',
1920
'/documentation',
20-
'/components',
2121
'/contributors',
2222
'/roboto-v20-latin-300.woff2',
2323
'/roboto-v20-latin-500.woff2',

src/Article.njs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class Article extends Translatable {
108108
<h1 class="text-pink-600 text-4xl font-light block mb-8"> {this.title} </h1>
109109
<div html={this.html} class="prose dark:prose-dark max-w-none" />
110110
<p class="bg-gray-100 p-2 mt-4">
111-
{this.i18n.lead} <a href="/" target="_blank" class="text-pink-600 font-semibold">{this.i18n.cta}</a>
111+
{this.i18n.lead} <a href="https://discord.gg/eDZfKz264v" target="_blank" class="text-pink-600 font-semibold">{this.i18n.cta}</a>
112112
</p>
113113
</article>
114114
</section>

0 commit comments

Comments
 (0)