diff --git a/frontend/src/components/HomeComponents/Hero/Hero.tsx b/frontend/src/components/HomeComponents/Hero/Hero.tsx
index 5bf4ef83..c57d51a8 100644
--- a/frontend/src/components/HomeComponents/Hero/Hero.tsx
+++ b/frontend/src/components/HomeComponents/Hero/Hero.tsx
@@ -3,6 +3,7 @@ import { CopyButton } from './CopyButton';
import { ToastNotification } from './ToastNotification';
import { useState } from 'react';
import { Eye, EyeOff } from 'lucide-react';
+import { AnimatedHeroGlow } from '@/components/utils/AnimatedHeroGlow';
export const Hero = (props: Props) => {
const [showUuid, setShowUuid] = useState(true);
@@ -94,7 +95,7 @@ export const Hero = (props: Props) => {
-
+
diff --git a/frontend/src/components/HomeComponents/Hero/__tests__/__snapshots__/Hero.test.tsx.snap b/frontend/src/components/HomeComponents/Hero/__tests__/__snapshots__/Hero.test.tsx.snap
index 1147dc0c..25866f78 100644
--- a/frontend/src/components/HomeComponents/Hero/__tests__/__snapshots__/Hero.test.tsx.snap
+++ b/frontend/src/components/HomeComponents/Hero/__tests__/__snapshots__/Hero.test.tsx.snap
@@ -167,7 +167,9 @@ exports[`Hero component using snapshot renders correctly 1`] = `
{
return (
@@ -51,7 +52,7 @@ export const Hero = () => {
-
+
);
};
diff --git a/frontend/src/components/LandingComponents/Hero/__tests__/__snapshots__/Hero.test.tsx.snap b/frontend/src/components/LandingComponents/Hero/__tests__/__snapshots__/Hero.test.tsx.snap
index 3c459e6d..88cc8873 100644
--- a/frontend/src/components/LandingComponents/Hero/__tests__/__snapshots__/Hero.test.tsx.snap
+++ b/frontend/src/components/LandingComponents/Hero/__tests__/__snapshots__/Hero.test.tsx.snap
@@ -84,7 +84,9 @@ exports[`Hero component using snapshot renders correctly 1`] = `
diff --git a/frontend/src/components/utils/AnimatedHeroGlow.tsx b/frontend/src/components/utils/AnimatedHeroGlow.tsx
new file mode 100644
index 00000000..bd3b3644
--- /dev/null
+++ b/frontend/src/components/utils/AnimatedHeroGlow.tsx
@@ -0,0 +1,30 @@
+import { motion } from 'framer-motion';
+
+export const AnimatedHeroGlow = () => {
+ return (
+
+ );
+};
diff --git a/frontend/src/index.css b/frontend/src/index.css
index f2c53fa9..cc1c72cc 100644
--- a/frontend/src/index.css
+++ b/frontend/src/index.css
@@ -1,65 +1,3 @@
html {
scroll-behavior: smooth;
}
-
-/* HeroCards background shadow */
-.shadow {
- position: absolute;
- background: hsla(330, 100%, 50%, 0%);
- border-radius: 24px;
- rotate: 35deg;
-
- width: 260px;
- top: 200px;
- height: 400px;
- filter: blur(150px);
- animation: shadow-slide infinite 4s linear alternate;
-}
-
-@keyframes shadow-slide {
- from {
- background: hsla(330, 100%, 50%, 20%); /* Pink shadow color */
- right: 460px;
- }
- to {
- background: hsla(240, 100%, 50%, 80%); /* Blue shadow color */
- right: 160px;
- }
-}
-
-@media (max-width: 1024px) {
- .shadow {
- top: 70px;
- }
-
- @keyframes shadow-slide {
- from {
- background: hsla(330, 100%, 50%, 20%); /* Pink shadow color */
- right: 460px;
- }
- to {
- background: hsla(240, 100%, 50%, 50%); /* Blue shadow color */
- right: 160px;
- }
- }
-}
-
-@media (max-width: 768px) {
- .shadow {
- top: 70px;
- width: 100px;
- height: 350px;
- filter: blur(60px);
- }
-
- @keyframes shadow-slide {
- from {
- background: hsla(330, 100%, 50%, 20%); /* Pink shadow color */
- right: 280px;
- }
- to {
- background: hsla(240, 100%, 50%, 30%); /* Blue shadow color */
- right: 100px;
- }
- }
-}