diff --git a/src/components/SupportWidget.astro b/src/components/SupportWidget.astro
deleted file mode 100644
index 549969d..0000000
--- a/src/components/SupportWidget.astro
+++ /dev/null
@@ -1,25 +0,0 @@
----
-/**
- * SupportWidget — top-level wrapper for the SiteAtlas Support Chat Widget.
- *
- * Imported in BaseLayout.astro. Only renders when PUBLIC_SUPPORT_API_URL is set.
- * Passes the configured API URL and product slug to the ChatWidget.
- */
-import ChatWidget from './support/ChatWidget.astro';
-
-interface Props {
- productSlug?: string;
-}
-
-const { productSlug = 'siteatlas' } = Astro.props;
-
-// Graceful degradation: render nothing if the API URL is not configured.
-// The ChatWidget itself also handles the missing-URL case, but we short-circuit
-// here to avoid shipping the widget JS/CSS to pages where support isn't wired up.
-const apiUrl = import.meta.env.PUBLIC_SUPPORT_API_URL ?? '';
-const shouldRender = apiUrl.length > 0;
----
-
-{shouldRender && (
-
How can we help?
-Ask anything about SiteAtlas. Our AI support agent usually responds in seconds.
-