From 6f4b800959c09bcb7e2104b715ae37b4c4e02d80 Mon Sep 17 00:00:00 2001 From: yuval-hazaz Date: Mon, 19 Feb 2024 18:49:55 +0200 Subject: [PATCH] update page content --- .../Sections/CodeSmartPlayHard/Hero/index.jsx | 70 ++++++++++++------- pages/code-smart-play-hard.js | 6 +- styles/components.scss | 20 +++++- 3 files changed, 69 insertions(+), 27 deletions(-) diff --git a/components/Sections/CodeSmartPlayHard/Hero/index.jsx b/components/Sections/CodeSmartPlayHard/Hero/index.jsx index 93e1d59f..987d77b5 100644 --- a/components/Sections/CodeSmartPlayHard/Hero/index.jsx +++ b/components/Sections/CodeSmartPlayHard/Hero/index.jsx @@ -5,37 +5,57 @@ import AppDashboard from '../../../../public/images/xbox.png'; const Hero = () => { return ( <> -
-
-

- Code. Deploy. Game On! -

-

- Boost your coding & gaming experience with Amplication. -

-
- Join our exclusive MWC 2024 raffle and get the chance to win an Xbox - Series X! +
+
+
+

+ Code. Deploy. Game On! +

+

+ Boost your coding & gaming experience with Amplication. +

+
+ Join our exclusive MWC 2024 raffle and get the chance to win an + Xbox Series X! +
+
+
+
- -
-
-
- {'Amplication -
+
+ {'Amplication +
-
- Win an Xbox! + > +
+ Win an Xbox! +
+
+ +
+
+
+
+ Code with Amplication and win big! +
+ +
+ Amplication automates backend creation, helping you deploy scalable + and reliable services faster and efficiently. Empower your business + with modern applications. Streamline and revolutionize your + development process. +
+
); diff --git a/pages/code-smart-play-hard.js b/pages/code-smart-play-hard.js index ea9c0102..6b46ee16 100644 --- a/pages/code-smart-play-hard.js +++ b/pages/code-smart-play-hard.js @@ -1,5 +1,5 @@ import Hero from '../components/Sections/CodeSmartPlayHard/Hero'; -import StartNow from '../components/Sections/Enterprise/StartNow'; +import StartNow from '../components/Sections/About/StartNow'; import { NextSeo } from 'next-seo'; import { MainLayout } from '../layouts'; @@ -22,6 +22,10 @@ const CodeSmartPlayHard = () => { +
+ +
+ diff --git a/styles/components.scss b/styles/components.scss index 8208798f..6bea6c9f 100644 --- a/styles/components.scss +++ b/styles/components.scss @@ -1,4 +1,4 @@ -.hero-blur { +@mixin hero-blur { position: relative; &::before { content: ''; @@ -12,3 +12,21 @@ filter: blur(100px); } } + +.hero-blur { + @include hero-blur; + + &--side { + @include hero-blur; + + &::before { + top: auto; + bottom: 100px; + left: -100px; + width: 100px; + height: 100px; + background: #4e1474; + filter: blur(50px); + } + } +}