mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-10 12:32:28 +10:00
39 lines
923 B
TypeScript
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>
|
|
);
|