Files
pushkinohistory-ru-v2/src/components/Footer.jsx

18 lines
655 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import React from 'react';
export default function Footer() {
const year = new Date().getFullYear();
return (
<footer className="border-t border-rule mt-8 py-6 bg-paper">
<div className="max-w-6xl mx-auto px-4 sm:px-6 flex flex-col sm:flex-row sm:justify-between gap-2 text-xs text-muted">
<div>© 2010{year} pushkinohistory.ru</div>
<div className="flex gap-4">
<a href="/feed/">RSS</a>
<a href="/sitemap.xml">Карта сайта</a>
<a href="https://forum.pushkinohistory.ru/" target="_blank" rel="noopener noreferrer">Форум </a>
</div>
</div>
</footer>
);
}