This commit is contained in:
ct
2025-07-05 18:20:05 +08:00
parent d3ccbbbea6
commit 23fa3aec04
5 changed files with 99 additions and 151 deletions

View File

@@ -6,33 +6,22 @@ const Footer = () => {
<div className="mx-auto max-w-6xl px-4 sm:px-6 lg:px-8">
<div className="border-t pt-8">
<div className="flex flex-col items-center justify-between space-y-4 sm:flex-row sm:space-y-0">
<div className="text-sm text-muted-foreground">
© {currentYear} MEMEAIGEN. All rights reserved.
</div>
<div className="text-muted-foreground text-sm">© {currentYear} MEMEAIGEN. All rights reserved.</div>
<div className="flex space-x-6">
<a
href="/"
className="text-sm text-muted-foreground hover:text-foreground transition-colors"
>
<a href="/" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Home
</a>
<a
href="/terms"
className="text-sm text-muted-foreground hover:text-foreground transition-colors"
>
<a href="/terms" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Terms
</a>
<a
href="/privacy"
className="text-sm text-muted-foreground hover:text-foreground transition-colors"
>
<a href="/privacy" className="text-muted-foreground hover:text-foreground text-sm transition-colors">
Privacy
</a>
<a
href="https://discord.gg/memeaigen"
href="https://discord.gg/YxKPrtPGZ2"
target="_blank"
rel="noopener noreferrer"
className="text-sm text-muted-foreground hover:text-foreground transition-colors"
className="text-muted-foreground hover:text-foreground text-sm transition-colors"
>
Discord
</a>
@@ -44,4 +33,4 @@ const Footer = () => {
);
};
export default Footer;
export default Footer;