Files
d1kt/src/components/Footer.tsx

28 lines
1.3 KiB
TypeScript
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';
const Footer = () => (
<footer style={{ textAlign: 'center', marginTop: '40px', padding: '20px', backgroundColor: '#f8f9fa', borderTop: '1px solid #e9ecef' }}>
<p style={{ margin: '10px 0', fontSize: '14px', color: '#6c757d' }}>
<a href="https://github.com/bobcoc/typing_practiceweb" target="_blank" rel="noopener noreferrer" style={{ marginLeft: '8px', color: '#007bff', textDecoration: 'none' }}>
</a>
<span style={{ margin: '0 8px' }}> | </span>
<a href="https://www.21cnjy.com" target="_blank" rel="noopener noreferrer" style={{ marginLeft: '8px', color: '#007bff', textDecoration: 'none' }}>
</a>
</p>
<p style={{ margin: '10px 0', fontSize: '14px', color: '#6c757d' }}>线
</p>
<p style={{ marginTop: '10px', fontSize: '14px', color: '#6c757d' }}>
:
<a href="mailto:smshine@qq.com" style={{ color: '#007bff', textDecoration: 'none' }}>
smshine@qq.com
</a>
</p>
</footer>
);
export default Footer;