diff --git a/landing-page/src/Pages/Landing page/Home1.tsx b/landing-page/src/Pages/Landing page/Home1.tsx index a60532686..70150c8d2 100644 --- a/landing-page/src/Pages/Landing page/Home1.tsx +++ b/landing-page/src/Pages/Landing page/Home1.tsx @@ -14,7 +14,9 @@ const ShuffleHero = () => { }; return ( -
+ <> +
+
{
-
+ + ); }; diff --git a/landing-page/src/index.css b/landing-page/src/index.css index 64829d001..7ffcc54a7 100644 --- a/landing-page/src/index.css +++ b/landing-page/src/index.css @@ -73,6 +73,22 @@ @apply bg-background text-foreground; } + /* Dotted Background */ + .dotted-background { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px); + background-size: 20px 20px; + z-index: -1; + } + + .dark .dotted-background { + background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px); + } + /* Starry Background */ .starry-background { position: fixed;