"use client" import { useEffect, useRef } from "react"; import Typed from "typed.js"; import Link from "next/link"; export default function Home(){ const el = useRef(null); useEffect(() => { const typed = new Typed(el.current, { strings: ['A minimal friction', 'A zero-login'], typeSpeed: 50, loop:true }); return () => { typed.destroy(); // cleanup (IMPORTANT) }; }, []); return( <>

CalcForCardiac:

medical calculator

When every second counts, clarity matters. CalcForCardiac gives you instant, precise cardiac calculations — no clutter, no login, just what you need.

No login required • Free • Instant results

Made with ❤️ by Saksham Vitwekar

Start with What You Need

Fast and reliable medical calculators — ready when you are.

Cockcroft Gault Equation

Takes age, weight, creatinine and gender as input and returns Creatinine Clearance

IMPACT Score

A risk assessment score used to calculate 1-year mortality prediction rate after a cardiac transplant by using 12 parameters

TIMI Score

a clinical risk assessment tool used to predict 14-day mortality and ischemic events in patients with UA/NSTEMI (unstable angina/non-ST-elevation myocardial infarction)




); }