"use client"; import { cn } from "@repo/ui/lib/utils"; import { AnimatedBeam } from "./AnimatedBeam"; import React, { forwardRef, useRef } from "react"; import Logo from "../../../public/logo.svg"; import Image from "next/image"; const Circle = forwardRef< HTMLDivElement, { className?: string; children?: React.ReactNode } >(({ className, children }, ref) => { return (
{children}
); }); export function AnimatedBeamShow() { const containerRef = useRef(null); const div1Ref = useRef(null); const div2Ref = useRef(null); const div3Ref = useRef(null); const div4Ref = useRef(null); const div5Ref = useRef(null); const div6Ref = useRef(null); const div7Ref = useRef(null); return (
logo image
); } const Icons = { notion: () => ( ), openai: () => ( ), googleDrive: () => ( ), whatsapp: () => ( ), googleDocs: () => ( ), zapier: () => ( ), messenger: () => ( ), };