Files
Reactive-Resume/apps/client/src/components/copyright.tsx
Amruth Pillai e87b05a93a release: v4.1.0
2024-05-05 14:55:06 +02:00

39 lines
923 B
TypeScript

import { t, Trans } from "@lingui/macro";
import { cn } from "@reactive-resume/utils";
type Props = {
className?: string;
};
export const Copyright = ({ className }: Props) => (
<div
className={cn(
"prose prose-sm prose-zinc flex max-w-none flex-col gap-y-1 text-xs opacity-40 dark:prose-invert",
className,
)}
>
<span>
<Trans>
Licensed under{" "}
<a
target="_blank"
rel="noopener noreferrer nofollow"
href="https://github.com/AmruthPillai/Reactive-Resume/blob/main/LICENSE.md"
>
MIT
</a>
</Trans>
</span>
<span>{t`By the community, for the community.`}</span>
<span>
<Trans>
A passion project by <a href="https://www.amruthpillai.com/">Amruth Pillai</a>
</Trans>
</span>
<span className="mt-4">
{t`Reactive Resume`} {"v" + appVersion}
</span>
</div>
);