feat: update front layout

This commit is contained in:
Maël Gangloff
2024-07-25 02:09:49 +02:00
parent 465aeb1ec9
commit 08da62c1b5
18 changed files with 405 additions and 168 deletions

View File

@@ -1,6 +1,7 @@
import * as React from 'react';
import Box from '@mui/material/Box';
import Container from "@mui/material/Container";
import Footer from "../components/Footer";
interface Props {
content: string
@@ -30,6 +31,7 @@ export default function Index({content}: Props) {
>
<div dangerouslySetInnerHTML={{__html: content}}></div>
</Box>
<Footer/>
</Container>
)