diff --git a/src/components/ui/SiteBackgroundSlot.tsx b/src/components/ui/SiteBackgroundSlot.tsx
index ee092e4..e69de29 100644
--- a/src/components/ui/SiteBackgroundSlot.tsx
+++ b/src/components/ui/SiteBackgroundSlot.tsx
@@ -1,32 +0,0 @@
-"use client";
-
-import { useStyle } from "@/components/ui/useStyle";
-import AuroraBackground from "@/components/ui/AuroraBackground";
-import CornerGlowBackground from "@/components/ui/CornerGlowBackground";
-import FloatingGradientBackground from "@/components/ui/FloatingGradientBackground";
-import GridLinesBackground from "@/components/ui/GridLinesBackground";
-import NoiseBackground from "@/components/ui/NoiseBackground";
-import NoiseGradientBackground from "@/components/ui/NoiseGradientBackground";
-
-const SiteBackgroundSlot = () => {
- const { siteBackground } = useStyle();
-
- switch (siteBackground) {
- case "aurora":
- return ;
- case "cornerGlow":
- return ;
- case "floatingGradient":
- return ;
- case "gridLines":
- return ;
- case "noise":
- return ;
- case "noiseGradient":
- return ;
- default:
- return null;
- }
-};
-
-export default SiteBackgroundSlot;