mirror of
https://github.com/kccleoc/seedpgp-web.git
synced 2026-03-07 09:57:50 +08:00
- Eliminate all white/light boxes and backgrounds - Fix drag-drop zone with neon cyberpunk colors (#00f0ff, #ff006e, #16213e) - Fix restored mnemonic display with matrix green (#39ff14) - Fix security options panel with dark gradient - Fix all remaining slate-700/slate-800 labels to cyberpunk neon - Fix info banners and text colors - Update badge components with cyberpunk color scheme - Apply consistent dark theme across all components
19 lines
555 B
TypeScript
19 lines
555 B
TypeScript
import React from 'react';
|
|
|
|
interface FooterProps {
|
|
appVersion: string;
|
|
buildHash: string;
|
|
buildTimestamp: string;
|
|
}
|
|
|
|
const Footer: React.FC<FooterProps> = ({ appVersion, buildHash, buildTimestamp }) => {
|
|
return (
|
|
<footer className="text-center text-xs text-[#6ef3f7] p-4">
|
|
<p>SeedPGP v{appVersion} • build {buildHash} • {buildTimestamp}</p>
|
|
<p className="mt-1">Never share your private keys or seed phrases. Always verify on an airgapped device.</p>
|
|
</footer>
|
|
);
|
|
};
|
|
|
|
export default Footer;
|