From c9003fa0c1fefd7d9b4d790740d95adeb80d3357 Mon Sep 17 00:00:00 2001 From: Parikshit Date: Sun, 15 Sep 2024 13:28:14 +0530 Subject: [PATCH] Removed spotlight, improving UI --- apps/web/components/Hero.tsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/web/components/Hero.tsx b/apps/web/components/Hero.tsx index 34fead2d..1dfc6e3c 100644 --- a/apps/web/components/Hero.tsx +++ b/apps/web/components/Hero.tsx @@ -2,7 +2,6 @@ import React, { useEffect, useState } from "react"; import { ContentSearch } from "../components/ContentSearch"; import { motion } from "framer-motion"; -import { Spotlight } from "@repo/ui"; import { TrackPros } from "./Tracks"; export default function Hero({ tracks }: { tracks: TrackPros[] }) { @@ -168,7 +167,6 @@ export default function Hero({ tracks }: { tracks: TrackPros[] }) {

- ); }