From 6291cc7ffe2680edb23b356cfd313554b8fd120b Mon Sep 17 00:00:00 2001 From: cupadev-admin Date: Mon, 9 Mar 2026 14:32:16 +0000 Subject: [PATCH] fix: apply designer agent improvements to src/components/public/PublicFooter.tsx --- src/components/public/PublicFooter.tsx | 123 +++++++++++++++++++++++++ 1 file changed, 123 insertions(+) create mode 100644 src/components/public/PublicFooter.tsx diff --git a/src/components/public/PublicFooter.tsx b/src/components/public/PublicFooter.tsx new file mode 100644 index 0000000..6081eab --- /dev/null +++ b/src/components/public/PublicFooter.tsx @@ -0,0 +1,123 @@ +import React from 'react' +import Link from 'next/link' +import { Zap, Github, Twitter, Rss } from 'lucide-react' + +const FOOTER_LINKS = { + Content: [ + { label: 'Blog', href: '/blog' }, + { label: 'About', href: '/about' }, + ], + Admin: [ + { label: 'Dashboard', href: '/admin' }, + { label: 'Posts', href: '/admin/posts' }, + { label: 'Pages', href: '/admin/pages' }, + { label: 'Settings', href: '/admin/settings' }, + ], +} + +const SOCIAL_LINKS = [ + { label: 'GitHub', href: 'https://github.com/cupadev', icon: Github }, + { label: 'Twitter', href: 'https://twitter.com/cupadev', icon: Twitter }, + { label: 'RSS Feed', href: '/rss.xml', icon: Rss }, +] + +export default function PublicFooter() { + const year = new Date().getFullYear() + + return ( + + ) +}