diff --git a/src/components/ui/HeroBackgroundSlot.tsx b/src/components/ui/HeroBackgroundSlot.tsx
index ac1a468..e69de29 100644
--- a/src/components/ui/HeroBackgroundSlot.tsx
+++ b/src/components/ui/HeroBackgroundSlot.tsx
@@ -1,32 +0,0 @@
-"use client";
-
-import { useStyle } from "@/components/ui/useStyle";
-import CornerGlowBackground from "@/components/ui/CornerGlowBackground";
-import GradientBarsBackground from "@/components/ui/GradientBarsBackground";
-import HorizonGlowBackground from "@/components/ui/HorizonGlowBackground";
-import LightRaysCenterBackground from "@/components/ui/LightRaysCenterBackground";
-import LightRaysCornerBackground from "@/components/ui/LightRaysCornerBackground";
-import RadialGradientBackground from "@/components/ui/RadialGradientBackground";
-
-const HeroBackgroundSlot = () => {
- const { heroBackground } = useStyle();
-
- switch (heroBackground) {
- case "cornerGlow":
- return ;
- case "gradientBars":
- return ;
- case "horizonGlow":
- return ;
- case "lightRaysCenter":
- return ;
- case "lightRaysCorner":
- return ;
- case "radialGradient":
- return ;
- default:
- return null;
- }
-};
-
-export default HeroBackgroundSlot;