diff --git a/src/components/sections/ready/ready.module.css b/src/components/sections/ready/ready.module.css index 67ef312..97afa25 100644 --- a/src/components/sections/ready/ready.module.css +++ b/src/components/sections/ready/ready.module.css @@ -1,4 +1,27 @@ .ready { + & .wrapper { + position: relative; + padding: 0 20px 40px; + border-radius: 0 0 20px 20px; + background: linear-gradient(transparent, var(--color-neutral-100)); + + &::after { + position: absolute; + bottom: 0; + left: 50%; + width: 70%; + height: 1px; + background: linear-gradient( + 90deg, + transparent, + var(--color-neutral-300), + transparent + ); + content: ''; + transform: translateX(-50%); + } + } + & .iconContainer { display: flex; flex-direction: column; diff --git a/src/components/sections/ready/ready.tsx b/src/components/sections/ready/ready.tsx index b34f1b0..991f375 100644 --- a/src/components/sections/ready/ready.tsx +++ b/src/components/sections/ready/ready.tsx @@ -8,18 +8,20 @@ export function Ready() { return (
-
-
-
- +
+
+
+
+ +
-
-

Are you ready?

-

Create your calm oasis in seconds!

- - Use Moodist - +

Are you ready?

+

Create your calm oasis in seconds!

+ + Use Moodist + +
);