Files
Reactive-Resume/apps/client/src/components/copyright.tsx
2023-11-27 10:26:06 -08:00

42 lines
1007 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 target="_blank" rel="noopener noreferrer nofollow" href="https://www.amruthpillai.com/">
Amruth Pillai
</a>
</Trans>
</span>
<span className="mt-4">
{t`Reactive Resume`} {"v" + appVersion}
</span>
</div>
);