Migrate project from typing_practiceweb

This commit is contained in:
2026-05-14 16:04:14 +08:00
parent dbc5425706
commit 0e87d5546d
225 changed files with 92811 additions and 0 deletions

28
src/components/Footer.tsx Normal file
View File

@@ -0,0 +1,28 @@
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;