diff --git a/src/front/Components/DesignSystem/Header/index.tsx b/src/front/Components/DesignSystem/Header/index.tsx index b4bffcd4..e5c496ce 100644 --- a/src/front/Components/DesignSystem/Header/index.tsx +++ b/src/front/Components/DesignSystem/Header/index.tsx @@ -50,7 +50,7 @@ export default class Header extends React.Component { return (
- + logo
diff --git a/src/front/Components/Layouts/PageNotFound/classes.module.scss b/src/front/Components/Layouts/PageNotFound/classes.module.scss index d044e590..30a6f4b3 100644 --- a/src/front/Components/Layouts/PageNotFound/classes.module.scss +++ b/src/front/Components/Layouts/PageNotFound/classes.module.scss @@ -6,4 +6,13 @@ align-items: center; justify-content: center; flex-direction: column; + text-align: center; + + .buttons-container{ + margin-top: 32px; + } + + @media(max-width: $screen-s){ + margin-top: 32px; + } } \ No newline at end of file diff --git a/src/front/Components/Layouts/PageNotFound/index.tsx b/src/front/Components/Layouts/PageNotFound/index.tsx index c8baf7d3..d7592019 100644 --- a/src/front/Components/Layouts/PageNotFound/index.tsx +++ b/src/front/Components/Layouts/PageNotFound/index.tsx @@ -1,20 +1,23 @@ +import Button from "@Front/Components/DesignSystem/Button"; +import Typography, { ITypo } from "@Front/Components/DesignSystem/Typography"; import DefaultTemplate from "@Front/Components/LayoutTemplates/DefaultTemplate"; +import Module from "@Front/Config/Module"; import Link from "next/link"; + import BasePage from "../Base"; import classes from "./classes.module.scss"; -import Typography, { ITypo } from "@Front/Components/DesignSystem/Typography"; -import Button from "@Front/Components/DesignSystem/Button"; -import Module from "@Front/Config/Module"; export default class PageNotFound extends BasePage { public override render(): JSX.Element { return (
- Il n'y a rien ici, la page que vous avez demandé n'existe pas - - - + Il n'y a rien ici, la page que vous avez demandée n'existe pas +
+ + + +
); diff --git a/src/front/Config/Module/development.json b/src/front/Config/Module/development.json index b449fef6..1702ebb5 100644 --- a/src/front/Config/Module/development.json +++ b/src/front/Config/Module/development.json @@ -6,7 +6,7 @@ "Home": { "enabled": true, "props": { - "path": "/", + "path": "/folders", "labelKey": "homepage" } },