{item.title}
diff --git a/src/components/NavbarFooter/styles.module.css b/src/components/NavbarFooter/styles.module.css
index 5d5730a..f1ebebe 100644
--- a/src/components/NavbarFooter/styles.module.css
+++ b/src/components/NavbarFooter/styles.module.css
@@ -44,3 +44,16 @@
.navbar-item__image {
width: 30px;
}
+
+.onboarding {
+ width: 188px;
+ color: #000;
+}
+
+.moon-onboarding__text {
+ margin-right: 108px;
+}
+
+.breathing-onboarding__text {
+ margin-left: 108px;
+}
diff --git a/src/components/Onboarding/index.tsx b/src/components/Onboarding/index.tsx
index 0c0b3cd..61be6be 100644
--- a/src/components/Onboarding/index.tsx
+++ b/src/components/Onboarding/index.tsx
@@ -9,11 +9,12 @@ export enum EDirectionOnboarding {
}
interface OnboardingProps {
- targetRef: React.RefObject
>
);
}
-export default Onboarding;
+export default TextWithFinger;
diff --git a/src/components/WallpaperPage/styles.module.css b/src/components/WallpaperPage/styles.module.css
index c9d6913..b39600f 100644
--- a/src/components/WallpaperPage/styles.module.css
+++ b/src/components/WallpaperPage/styles.module.css
@@ -60,15 +60,19 @@
.btn-download {
position: absolute;
- cursor: pointer;
top: 28px;
right: 32px;
width: 50px;
height: 50px;
- background-image: url(./Dowload.png);
- background-position: center;
- background-size: cover;
+ background-size: 70%;
+ background-image: url("/Save-icon.png");
background-repeat: no-repeat;
+ background-position: center center;
+ -webkit-backdrop-filter: blur(14px);
+ background-color: #696969;
+ backdrop-filter: blur(14px);
+ border-radius: 100%;
+ cursor: pointer;
}
.zodiac-metas {
diff --git a/src/routes.ts b/src/routes.ts
index c3f0a7e..6c47850 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -89,7 +89,7 @@ export const isEntrypoint = (path: string) => entrypoints.includes(path);
export const isNotEntrypoint = (path: string) => !isEntrypoint(path);
export const withNavigationRoutes = [
routes.client.wallpaper(),
- // routes.client.home(),
+ routes.client.home(),
];
export const hasNavigation = (path: string) =>
withNavigationRoutes.includes(path);
diff --git a/src/store/index.ts b/src/store/index.ts
index ba0546d..4ffc371 100644
--- a/src/store/index.ts
+++ b/src/store/index.ts
@@ -19,6 +19,7 @@ import onboardingConfig, {
selectOnboardingBreath,
selectOnboardingCompatibility,
selectOnboardingHome,
+ selectOnboardingNavbarFooter,
actions as onboardingConfigActions,
} from "./onboarding";
import payment, {
@@ -90,6 +91,7 @@ export const selectors = {
selectOnboardingHome,
selectOnboardingCompatibility,
selectOnboardingBreath,
+ selectOnboardingNavbarFooter,
...formSelectors,
};
export type RootState = ReturnType