diff --git a/src/components/App/index.tsx b/src/components/App/index.tsx index 0979ffb..3b61e02 100644 --- a/src/components/App/index.tsx +++ b/src/components/App/index.tsx @@ -20,9 +20,7 @@ function App(): JSX.Element { return ( }> - - } /> + } /> } /> } /> } /> @@ -63,4 +61,10 @@ function SkipStep(): JSX.Element { return user ? : } +function MainPage(): JSX.Element { + const { user } = useAuth() + const page = user ? routes.client.wallpaper() : routes.client.birthday() + return +} + export default App diff --git a/src/components/Footer/styles.css b/src/components/Footer/styles.css index f83854c..47a3ce9 100644 --- a/src/components/Footer/styles.css +++ b/src/components/Footer/styles.css @@ -3,7 +3,7 @@ font-size: 14px; font-weight: 400; line-height: 2; - padding: 10px 0; + padding-bottom: 25px; color: #8e8e93; text-align: center; } diff --git a/src/components/Navbar/index.tsx b/src/components/Navbar/index.tsx index cb7209b..be3e040 100644 --- a/src/components/Navbar/index.tsx +++ b/src/components/Navbar/index.tsx @@ -27,7 +27,9 @@ function Navbar({ isOpen, closeMenu }: NavbarProps): JSX.Element {