Skip to content

Commit

Permalink
Feat/adjust in home poc (#1706)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
carlosstenzel authored Jan 10, 2025
1 parent 57fa67f commit 0c48441
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
18 changes: 18 additions & 0 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,24 @@ redirect_from: "/en/index.html"
</section>
<div id="install-command">$ npm install express --save</div>
</div>

<div id="homepage-rightpane" class="pane">
<div id="quick-start">
<pre><code class="language-javascript">
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}`)
})
</code></pre>
</div>
</div>
</section>
<section id="announcements">
{% include announcement/announcement-en.md %}
Expand Down
21 changes: 20 additions & 1 deletion pt-br/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,26 @@ description: Express is a fast, unopinionated, minimalist web framework for Node
</section>
<div id="install-command">$ npm install express --save</div>
</div>

<div id="homepage-rightpane" class="pane">
<div id="quick-start">
<pre><code class="language-javascript">
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}`)
})
</code></pre>
</div>
</div>
</section>

<section id="announcements">
{% include announcement/announcement-pt-br.md %}
</section>
Expand All @@ -43,4 +62,4 @@ description: Express is a fast, unopinionated, minimalist web framework for Node
</div>
</div>

</section>
</section>

0 comments on commit 0c48441

Please sign in to comment.