mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
add "welcome" page
This commit is contained in:
parent
e7d0c83686
commit
81fba4a1be
16 changed files with 360 additions and 10 deletions
|
@ -5,6 +5,7 @@
|
|||
align-items: flex-start;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
padding-bottom: $bar_height + $gap;
|
||||
}
|
||||
|
||||
.grid {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@import "src/styles/variables";
|
||||
@import 'src/styles/variables';
|
||||
|
||||
.wrapper {
|
||||
width: 100%;
|
||||
|
@ -15,7 +15,6 @@
|
|||
position: relative;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
padding-bottom: 29px;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
margin-bottom: $bar_height + $gap;
|
||||
}
|
||||
|
||||
.content {
|
||||
|
|
17
src/layouts/WelcomeLayout/index.tsx
Normal file
17
src/layouts/WelcomeLayout/index.tsx
Normal file
|
@ -0,0 +1,17 @@
|
|||
import React from 'react';
|
||||
|
||||
import { HistorySlide } from '~/components/welcome/HistorySlide';
|
||||
import { PersonsSlide } from '~/components/welcome/PersonsSlide';
|
||||
import { WelcomeSlide } from '~/components/welcome/WelcomeSlide';
|
||||
|
||||
import styles from './styles.module.scss';
|
||||
|
||||
const WelcomeLayout = () => (
|
||||
<div className={styles.layout}>
|
||||
<WelcomeSlide />
|
||||
<HistorySlide />
|
||||
<PersonsSlide />
|
||||
</div>
|
||||
);
|
||||
|
||||
export { WelcomeLayout };
|
5
src/layouts/WelcomeLayout/styles.module.scss
Normal file
5
src/layouts/WelcomeLayout/styles.module.scss
Normal file
|
@ -0,0 +1,5 @@
|
|||
@import 'src/styles/variables';
|
||||
|
||||
.layout {
|
||||
margin-top: -$header_height;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue