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 <noreply@anthropic.com>
This commit is contained in:
Sunil Prasad 2026-07-12 14:19:37 -07:00
parent c48a11b13c
commit 02126f89f2

View File

@ -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";