Files
komari-theme-purcarte/src/components/sections/Footer.tsx
2025-09-07 22:37:24 +08:00

30 lines
956 B
TypeScript

import React from "react";
const Footer: React.FC = () => {
return (
<footer className="fixed inset-shadow-sm inset-shadow-(color:--accent-a4) bottom-0 left-0 right-0 p-2 text-center purcarte-blur z-50">
<p className="flex justify-center text-sm text-second-foreground text-shadow-lg text-shadow-(color:--accent-a4) whitespace-pre">
Powered by{" "}
<a
href="https://github.com/komari-monitor/komari"
target="_blank"
rel="noopener noreferrer"
className="text-blue-500 hover:text-blue-600 transition-colors">
Komari Monitor
</a>
{" | "}
Theme by{" "}
<a
href="https://github.com/Montia37/komari-theme-purcarte"
target="_blank"
rel="noopener noreferrer"
className="text-blue-500 hover:text-blue-600 transition-colors">
PurCarte
</a>
</p>
</footer>
);
};
export default Footer;