Skip to content

Commit

Permalink
Merge branch 'sandbox'
Browse files Browse the repository at this point in the history
  • Loading branch information
axrobert authored Apr 12, 2024
2 parents 76ce587 + c48f8f8 commit 13a04d5
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/introducao/sobre-nos.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@ sidebar_position: 1

# Sobre nós

Somos uma comunidade de desenvolvedores que prezam pela busca do conhecimento e facilidade
no compartilhamento de informações. Não somos uma empresa, mas sim uma organização de membros
que contribuem por vontade própria.
47 changes: 47 additions & 0 deletions src/theme/NotFound.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import React, { useEffect } from 'react';
import Translate, {translate} from '@docusaurus/Translate';
import {PageMetadata} from '@docusaurus/theme-common';
import Layout from '@theme/Layout';
export default function NotFound() {

return (
<>
<PageMetadata
title={translate({
id: 'theme.NotFound.title',
message: 'Página não encontrada',
})}
/>
<Layout>
<main className="container margin-vert--xl">
<div className="row">
<div className="col col--6 col--offset-3">
<h1 className="hero__title">
<Translate
id="theme.NotFound.title"
description="The title of the 404 page">
404 🥲
</Translate>
</h1>
<p>
<Translate
id="theme.NotFound.p1"
description="The first paragraph of the 404 page">
Não conseguimos encontrar o que você procurava
</Translate>
</p>
<p>
<Translate
id="theme.NotFound.p2"
description="The 2nd paragraph of the 404 page">
Por favor, entre em contato com os desenvolvedores dessa documentação
informando que o link está quebrado. Lembre-se de fornecer a URL original.
</Translate>
</p>
</div>
</div>
</main>
</Layout>
</>
);
}

0 comments on commit 13a04d5

Please sign in to comment.