import React from "react"; import { Link } from "react-router-dom"; interface EntranceCardProps { name: string; path: string; description?: string; } export function EntranceCard({ name, path, description }: EntranceCardProps) { return (

{name}

{description && (

{description}

)}
); }