From 0c484411790d8152c53252add065097f63a31613 Mon Sep 17 00:00:00 2001 From: Carlos Stenzel Date: Fri, 10 Jan 2025 14:14:40 -0300 Subject: [PATCH] Feat/adjust in home poc (#1706) * feat - align content * Feat - Adjust in home - poc * Update notice-es.md * update all lang * fix - add new rule * feat - add EN page and remove title 'exemplo rapido' * fix - rollback remove tag * fix - rollback remove tag v2 * fix - rollback remove tag v3 --- index.md | 18 ++++++++++++++++++ pt-br/index.md | 21 ++++++++++++++++++++- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/index.md b/index.md index 6ac0b776dd..00213867ac 100644 --- a/index.md +++ b/index.md @@ -16,6 +16,24 @@ redirect_from: "/en/index.html"
$ npm install express --save
+ +
+
+

+const express = require('express')
+const app = express()
+const port = 3000
+
+app.get('/', (req, res) => {
+  res.send('Hello World!')
+})
+
+app.listen(port, () => {
+  console.log(`Example app listening on port ${port}`)
+})
+      
+
+
{% include announcement/announcement-en.md %} diff --git a/pt-br/index.md b/pt-br/index.md index 0d8bd4811e..1a77d384da 100644 --- a/pt-br/index.md +++ b/pt-br/index.md @@ -16,7 +16,26 @@ description: Express is a fast, unopinionated, minimalist web framework for Node
$ npm install express --save
+ +
+
+

+const express = require('express')
+const app = express()
+const port = 3000
+
+app.get('/', (req, res) => {
+  res.send('Olá Mundo!')
+})
+
+app.listen(port, () => {
+  console.log(`App de exemplo esta rodando na porta ${port}`)
+})
+      
+
+
+
{% include announcement/announcement-pt-br.md %}
@@ -43,4 +62,4 @@ description: Express is a fast, unopinionated, minimalist web framework for Node - + \ No newline at end of file