diff --git a/apps/landing/src/app/_components/GlowEffect.tsx b/apps/landing/src/app/_components/GlowEffect.tsx index e888888..1bfead9 100644 --- a/apps/landing/src/app/_components/GlowEffect.tsx +++ b/apps/landing/src/app/_components/GlowEffect.tsx @@ -1,6 +1,6 @@ import { useState, useEffect } from 'react'; -export default function GlowEffect({ children }: { children: React.ReactNode }) { +export default function GlowEffect({ children, id }: { children: React.ReactNode; id?: string }) { const [isPropertyRegistered, setIsPropertyRegistered] = useState(false); // Register CSS property in component body (before render) @@ -68,7 +68,7 @@ export default function GlowEffect({ children }: { children: React.ReactNode }) `} )} -