Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions src/components/layout/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,17 @@ export const Footer: React.FC<FooterProps> = ({ locale }) => {
{/* Copyright */}
<div className="pt-8 border-t border-[hsl(var(--color-border))] flex flex-col md:flex-row items-center justify-between gap-4">
<p className="text-sm text-[hsl(var(--color-muted-foreground))]">
&copy; {currentYear} {t('brand')}. {t('footer.copyright', { year: '' }).replace(/^\d{4}\s*/, '')}
</p>
&copy; 2026 PDF |{' '}
<a
href="https://kixtools.com"
target="_blank"
rel="noopener noreferrer"
className="text-[hsl(var(--color-primary))] hover:underline"
>
kixtools
</a>
{' | 免费在线工具'}
</p>
<div className="flex items-center gap-6">
<Link href={`/${locale}/terms`} className="text-xs text-[hsl(var(--color-muted-foreground))] hover:text-[hsl(var(--color-foreground))]">Terms</Link>
<Link href={`/${locale}/privacy`} className="text-xs text-[hsl(var(--color-muted-foreground))] hover:text-[hsl(var(--color-foreground))]">Privacy</Link>
Expand Down