38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
/**
|
|
* App Root Component - V21 UI
|
|
* 注意:此组件已被路由系统接管,仅作为默认展示
|
|
*/
|
|
import { Link } from 'react-router-dom';
|
|
import './App.css';
|
|
|
|
function App() {
|
|
return (
|
|
<div className="xx-app-root">
|
|
<div className="xx-app-container">
|
|
<div className="xx-hero-section">
|
|
<div className="xx-logo">🎬</div>
|
|
<h1>小虾 SaaS</h1>
|
|
<p>自动化视频剪辑平台</p>
|
|
<div className="xx-status-badge">
|
|
<span className="xx-status-dot"></span>
|
|
前端开发中
|
|
</div>
|
|
</div>
|
|
|
|
<div className="xx-card xx-quick-links">
|
|
<h3>快速链接</h3>
|
|
<div className="xx-link-grid">
|
|
<span>Projects (Coming Soon)</span>
|
|
<Link to="/projects" className="xx-link-item">
|
|
<span className="xx-link-icon">📋</span>
|
|
<span>我的项目</span>
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default App;
|