TDL
Thất Dạ Lý
Computer Card - Copy this React, Tailwind Component to your project
Const ComputerCard = ({ computer }) => ( <Link to={`/computers/${computer.id}`} className="bg white p 6 rounded lg shadow md hover:shadow lg transition shadow" > <h2 className="text xl font bold mb 2">{computer.hostname}</h2> <p className="text gray 600">IP: {computer.ip_address}</p> <p className="text gray 600">MAC: {computer.mac_address}</p> <p className="text gray 600">OS: {computer.os} {computer.os_version}</p> <p className="text gray 600">Last Seen: {computer.last_seen}</p> </Link> ); i need some thing more beautiful, only window os
Prompt
