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 ( + + ) +}