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:
parent
c48a11b13c
commit
02126f89f2
@ -1,6 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import { ArrowRight, Check, Minus, Plus } from "lucide-react";
|
import { ArrowRight, Check, Minus, Plus } from "lucide-react";
|
||||||
import { GaugeChart } from "@/components/charts/GaugeChart";
|
import { GaugeChart } from "@/components/charts/GaugeChart";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user