'use client'; import { useEffect } from 'react'; import { useRouter } from 'next/navigation'; /** * /account (Session 24). * * Paid users see "Account" in the nav instead of "Pricing". Rather than * duplicate the subscription UI, this route forwards to /profile, which * already renders the current plan, usage, founder pricing, and the * cancel/manage-subscription controls. Keeping one canonical surface * avoids two screens drifting out of sync. */ export default function AccountPage() { const router = useRouter(); useEffect(() => { router.replace('/profile'); }, [router]); return (

Opening your account…

); }