import React from "react"; import * as motion from "motion/react-client"; import { Card } from "@nextui-org/react"; interface RepoCardProps { title: string; description: string; } export const RepoCard: React.FC = ({ title, description }) => { return (

{title}

{description}

); };