import { ArrowRight } from 'lucide-react' import { usePathname, useRouter } from 'next/navigation' import React from 'react' import { trackEvent, MixpanelEvent } from "@/utils/mixpanel"; const FinalStep = () => { const router = useRouter() const pathname = usePathname() const handleGoToDashboard = () => { trackEvent(MixpanelEvent.Navigation, { from: pathname, to: "/dashboard" }); router.push('/dashboard') } const handleGoToUpload = () => { trackEvent(MixpanelEvent.Navigation, { from: pathname, to: "/upload" }); router.push('/upload') } return (
presenton

Welcome on board!

Your AI workspace is ready. Let’s create your first presentation.

) } export default FinalStep