'use client'; import React from 'react'; import { useRouter } from 'next/navigation'; import './success.scss'; const DeleteAccountSuccessPage = () => { const router = useRouter(); return (

Account Scheduled for Deletion

Your account will remain accessible for 30 days

Your account has been scheduled for deletion and will be permanently removed in 30 days.

If you change your mind, you can log in anytime within the next 30 days and reactivate your account from your profile page.

What happens next?
  • Your account remains inactive but still exists for 30 days
  • After 30 days, all personal data will be permanently deleted
  • You can reactivate your account by logging in and visiting your profile
); }; export default DeleteAccountSuccessPage;