diff --git a/app/modules/FeaturedCollections.tsx b/app/modules/FeaturedCollections.tsx
deleted file mode 100644
index 3c0ce9fe..00000000
--- a/app/modules/FeaturedCollections.tsx
+++ /dev/null
@@ -1,49 +0,0 @@
-import { Image } from "@shopify/hydrogen";
-
-import type { HomepageFeaturedCollectionsQuery } from "storefrontapi.generated";
-import { Heading, Section, Grid, Link } from "~/modules";
-
-type FeaturedCollectionsProps = HomepageFeaturedCollectionsQuery & {
- title?: string;
- [key: string]: any;
-};
-
-export function FeaturedCollections({
- collections,
- title = "Collections",
- count,
- ...props
-}: FeaturedCollectionsProps) {
- const haveCollections = collections?.nodes?.length > 0;
- if (!haveCollections) return null;
-
- const collectionsWithImage = collections.nodes
- .filter((item) => item.image)
- .slice(0, count);
-
- return (
-