Skip to content

Commit 32dcd48

Browse files
committed
update main page and support portuguese language
1 parent 8188daa commit 32dcd48

File tree

5 files changed

+36
-11
lines changed

5 files changed

+36
-11
lines changed

i18n/pt-br/code.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -333,5 +333,11 @@
333333
},
334334
"Contribute to Projects": {
335335
"message": "Contribua para os projetos"
336+
},
337+
"Where innovation meets collaboration.": {
338+
"message": "Onde inovação encontra colaboração."
339+
},
340+
"Explore the Projects": {
341+
"message": "Conheça os Projetos"
336342
}
337-
}
343+
}

i18n/pt-br/docusaurus-theme-classic/footer.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,9 @@
2626
"copyright": {
2727
"message": "Direitos Autorais © 2025 BianchTech, Inc. Desenvolvido com Docusaurus.",
2828
"description": "The footer copyright"
29+
},
30+
"link.title.Projects": {
31+
"message": "Projetos",
32+
"description": "The title of the footer links column with title=Projects in the footer"
2933
}
30-
}
34+
}

i18n/pt-br/docusaurus-theme-classic/navbar.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,9 @@
1818
"item.label.GitHub": {
1919
"message": "GitHub",
2020
"description": "Navbar item with label GitHub"
21+
},
22+
"item.label.Projects": {
23+
"message": "Projetos",
24+
"description": "Navbar item with label Projects"
2125
}
2226
}

src/css/custom.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;
4+
15
/**
26
* Any CSS included here will be global. The classic template
37
* bundles Infima by default. Infima is a CSS framework designed to

src/pages/index.tsx

Lines changed: 16 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,25 @@ import Translate, { translate } from '@docusaurus/Translate';
1111

1212
function HomepageHeader() {
1313
const { siteConfig } = useDocusaurusContext();
14+
1415
return (
15-
<header className={clsx('hero hero--primary', styles.heroBanner)}>
16-
<div className="container">
17-
<Heading as="h1" className="hero__title">
16+
<header className="bg-gradient-to-br from-indigo-900 via-indigo-700 to-cyan-500 text-white py-24 text-center">
17+
<div className="container mx-auto px-4">
18+
<h1 className="text-5xl md:text-6xl font-bold mb-4">
1819
{siteConfig.title}
19-
</Heading>
20-
<p className="hero__subtitle">{siteConfig.tagline}</p>
21-
<div className={styles.buttons}>
20+
</h1>
21+
<p className="text-xl md:text-2xl font-light mb-2">
22+
{siteConfig.tagline}
23+
</p>
24+
<p className="text-lg text-gray-100 mb-6">
25+
<Translate>Where innovation meets collaboration.</Translate>
26+
</p>
27+
<div>
2228
<Link
23-
className="button button--secondary button--lg"
24-
to="/docs/intro">
25-
<Translate>Projects Docs</Translate>
29+
className="bg-white text-indigo-700 hover:bg-gray-100 font-semibold px-6 py-3 rounded-md text-lg transition"
30+
to="/docs/intro"
31+
>
32+
<Translate>Explore the Projects</Translate>
2633
</Link>
2734
</div>
2835
</div>

0 commit comments

Comments
 (0)