import { Typography } from "../../Design/Typography/Typography.tsx" import { SectionContent } from "../../Layout/Section/Section.tsx" import { GitHubIcon } from "../About/SocialMediaList/SocialMediaIcons/GitHubIcon.tsx" export interface RepositoryProps { name: string description: string href: string } export const Repository: React.FC = (props) => { const { name, description, href } = props return (
  • {name}

    {description}

  • ) }