This commit is contained in:
ct
2025-07-17 03:42:55 +08:00
parent 06675de71b
commit 85917e0cdf
46 changed files with 2426 additions and 121 deletions

View File

@@ -1,6 +1,7 @@
import { Switch } from '@/components/ui/switch';
import { useTheme } from '@/hooks/useTheme';
import { Moon, Sun } from 'lucide-react';
import { route } from 'ziggy-js';
const Footer = () => {
const currentYear = new Date().getFullYear();
@@ -28,15 +29,21 @@ const Footer = () => {
{/* Navigation Links */}
<div className="flex space-x-6">
<a href="/" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
<a href={route('home')} className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Home
</a>
<a href="/terms" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
<a href={route('memes.index')} className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Meme Library
</a>
<a href={route('terms')} className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Terms
</a>
<a href="/privacy" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
<a href={route('privacy')} className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Privacy
</a>
<a href={route('dmca-copyright')} className="text-muted-foreground hover:text-foreground text-sm transition-colors">
DMCA
</a>
{import.meta.env.VITE_DISCORD_LINK && (
<a
href={import.meta.env.VITE_DISCORD_LINK}