2023-10-23 23:11:59 +02:00
|
|
|
import { ShadowContainer } from "@/components/design/ShadowContainer"
|
|
|
|
import { GitHubIcon } from "@/components/Profile/SocialMediaList/SocialMediaIcons/GitHubIcon"
|
2021-07-04 19:56:05 +02:00
|
|
|
|
|
|
|
export interface RepositoryProps {
|
|
|
|
name: string
|
|
|
|
description: string
|
|
|
|
href: string
|
|
|
|
}
|
|
|
|
|
2023-08-01 17:22:09 +02:00
|
|
|
export const Repository = (props: RepositoryProps): JSX.Element => {
|
2021-07-04 19:56:05 +02:00
|
|
|
const { name, description, href } = props
|
|
|
|
|
|
|
|
return (
|
2023-10-23 23:11:59 +02:00
|
|
|
<ShadowContainer className="relative !mb-4 max-h-32 cursor-pointer p-6 transition-transform duration-200 ease-in-out hover:-translate-y-2">
|
|
|
|
<a href={href} target="_blank" rel="noopener noreferrer">
|
|
|
|
<div className="flex">
|
|
|
|
<GitHubIcon className="mr-2 h-6" />
|
2024-04-06 20:25:02 +02:00
|
|
|
<span className="font-semibold text-primary dark:text-primary-dark">
|
2024-01-28 01:56:47 +01:00
|
|
|
{name}
|
|
|
|
</span>
|
2021-07-04 19:56:05 +02:00
|
|
|
</div>
|
2023-10-23 23:11:59 +02:00
|
|
|
<p className="my-4">{description}</p>
|
2021-07-04 19:56:05 +02:00
|
|
|
</a>
|
|
|
|
</ShadowContainer>
|
|
|
|
)
|
|
|
|
}
|