back to top, main card

This commit is contained in:
2022-05-31 22:45:38 +02:00
parent 7c17607c27
commit 6f247c37fd
6 changed files with 73 additions and 68 deletions
+5 -3
View File
@@ -6,7 +6,7 @@ import { ColorModeContext } from 'App';
import { LandingWhite } from 'themes/Theme';
import FullScreenContainer from 'layouts/common/fullScreenContainer';
import Footer from './components/footer';
import BackToTop from '../common/backToTop';
import Header from './components/header';
const LandingLayout = (props) => {
@@ -19,8 +19,10 @@ const LandingLayout = (props) => {
<ThemeProvider theme={LandingWhite}>
<div id='back-to-top-anchor' />
<Header />
<FullScreenContainer>{children}</FullScreenContainer>
<Footer />
<FullScreenContainer>
{children}
<BackToTop />
</FullScreenContainer>
</ThemeProvider>
</ColorModeContext.Provider>
);