This commit is contained in:
hu xiaotong
2025-04-16 15:43:15 +08:00
commit d53355859b
13 changed files with 2483 additions and 0 deletions

26
src/App.css Normal file
View File

@@ -0,0 +1,26 @@
/* body {
margin: 0;
color: #fff;
font-family: Inter, Avenir, Helvetica, Arial, sans-serif;
background-image: linear-gradient(to bottom, #020917, #101725);
}
.content {
display: flex;
min-height: 100vh;
line-height: 1.1;
text-align: center;
flex-direction: column;
justify-content: center;
}
.content h1 {
font-size: 3.6rem;
font-weight: 700;
}
.content p {
font-size: 1.2rem;
font-weight: 400;
opacity: 0.5;
} */

1190
src/App.tsx Normal file

File diff suppressed because it is too large Load Diff

1
src/env.d.ts vendored Normal file
View File

@@ -0,0 +1 @@
/// <reference types="@rsbuild/core/types" />

2
src/index.css Normal file
View File

@@ -0,0 +1,2 @@
@import 'tailwindcss';
@import '@fortawesome/fontawesome-free/css/all.min.css';

14
src/index.tsx Normal file
View File

@@ -0,0 +1,14 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import './index.css';
const rootEl = document.getElementById('root');
if (rootEl) {
const root = ReactDOM.createRoot(rootEl);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>,
);
}