Skip to content

Commit

Permalink
fix: Correção página inicial
Browse files Browse the repository at this point in the history
  • Loading branch information
paulomh committed Nov 5, 2024
1 parent 859ff7f commit ef0cc52
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Docs/src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import HomepageFeatures from '@site/src/components/HomepageFeatures';

import Heading from '@theme/Heading';
import styles from './index.module.css';
import { Redirect } from '@docusaurus/router';

function HomepageHeader() {
const {siteConfig} = useDocusaurusContext();
Expand All @@ -28,6 +29,11 @@ function HomepageHeader() {
);
}

export default function Home() {
return <Redirect to="/2024.2-Grupo06/docs/intro" />;
}

/*
export default function Home() {
const {siteConfig} = useDocusaurusContext();
return (
Expand All @@ -41,3 +47,4 @@ export default function Home() {
</Layout>
);
}
*/

0 comments on commit ef0cc52

Please sign in to comment.