import { Link } from "@tanstack/react-router"; import { formatPrice, formatWeight } from "../lib/formatters"; interface SetupCardProps { id: number; name: string; itemCount: number; totalWeight: number; totalCost: number; } export function SetupCard({ id, name, itemCount, totalWeight, totalCost, }: SetupCardProps) { return (