Page MenuHomec4science

Box.js
No OneTemporary

File Metadata

Created
Sun, Oct 6, 11:14
// components/Box.js
import Link from 'next/link';
import './Box.css';
function Box({ title, description, link }) {
return (
<div className="box">
<Link href={link}>
<h2>{title}</h2>
<p>{description}</p>
</Link>
{/* Optional: Add styles here */}
</div>
);
}
export default Box;

Event Timeline