From 02126f89f2ed435fca52ff8f00a086fee11faa10 Mon Sep 17 00:00:00 2001 From: Sunil Prasad Date: Sun, 12 Jul 2026 14:19:37 -0700 Subject: [PATCH] fix: import useEffect in Sections.tsx ProductShowcase crashed with ReferenceError because useEffect was used for the card rotation interval but not imported. Co-Authored-By: Claude Fable 5 --- components/marketing/Sections.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/marketing/Sections.tsx b/components/marketing/Sections.tsx index d2353b4..a0fca30 100644 --- a/components/marketing/Sections.tsx +++ b/components/marketing/Sections.tsx @@ -1,6 +1,6 @@ "use client"; -import { useState } from "react"; +import { useEffect, useState } from "react"; import Link from "next/link"; import { ArrowRight, Check, Minus, Plus } from "lucide-react"; import { GaugeChart } from "@/components/charts/GaugeChart";